acidline/Rocket/master/app/www/.htaccess - Htaccess File

acidline/Rocket/master/app/www/.htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
  
    # Reroute any incoming request that is not an existing directory or file
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?u=$1 [L,QSA]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache