pawlobanano/framework/master/web/.htaccess - Htaccess File

pawlobanano/framework/master/web/.htaccess

<IfModule mod_rewrite.c>
    Options +FollowSymLinks -Indexes -Multiviews
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-f

    # Explicitly disable rewriting for front controllers
    RewriteRule ^front.php - [L]
    #RewriteRule ^front_dev.php - [L]

    # Change below before deploying to production
    RewriteRule ^(.*)$ front.php [QSA,L]
    # RewriteRule ^(.*)$ front_dev.php [QSA,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache