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

ashyashy/mif/master/hosting/.htaccess

AddHandler php53-script php
DirectorySlash Off

# Dev mode
#DirectoryIndex app_dev.php

# Production mode
DirectoryIndex app.php

<IfModule mod_rewrite.c>
    RewriteEngine On
    Options +FollowSymlinks
    RewriteCond %{REQUEST_FILENAME} !-f

    # Production mode
    RewriteRule ^(.*)$ app.php [QSA,L]

    # Dev mode
    #RewriteRule ^(.*)$ app_dev.php [QSA,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache