Lara-gru/fuelphp-test/master/.htaccess - Htaccess File

Lara-gru/fuelphp-test/master/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine on

    # Send request to the subfolder, if its not a real file, folder or it's a root request
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d [OR]
    RewriteCond $1 ^$

    RewriteRule ^(.*)$ /deep/sub/folder [QSA,L]
;    RewriteRule ^(.*)$ /deep/sub/folder [R=301,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache