ashyashy/mif/master/public_html/.htaccess - Htaccess File

ashyashy/mif/master/public_html/.htaccess

DirectorySlash Off
DirectoryIndex app_dev.php
<IfModule mod_rewrite.c>
    RewriteEngine On
    Options +FollowSymlinks
    RewriteCond %{REQUEST_FILENAME} !-f
    ##RewriteRule ^(.*)$ app.php [QSA,L]
    RewriteRule ^(.*)$ app_dev.php [QSA,L]
</IfModule>

# Set up UTF-8 encoding
AddDefaultCharset UTF-8
AddCharset UTF-8 .php

php_value default_charset "UTF-8"

php_value iconv.input_encoding "UTF-8"
php_value iconv.internal_encoding "UTF-8"
php_value iconv.output_encoding "UTF-8"

php_value mbstring.internal_encoding UTF-8
php_value mbstring.http_output UTF-8

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache