breenie/shorty/master/app/.htaccess - Htaccess File

breenie/shorty/master/app/.htaccess

<IfModule mod_rewrite.c>
    Options -MultiViews

#    RewriteEngine On
#    RewriteCond %{REQUEST_FILENAME} !-f
#    RewriteRule ^ index.php [QSA,L]

    RewriteEngine on
    RewriteBase /
    RewriteRule ^$ index.html [NE,L]
    RewriteRule ^api index.php [NE,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*) /index.php [NE,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache