Htaccess File

shovemedia/GigaJS/master/demo/site/.htaccess

REQUEST_FILENAME
<IfModule mod_rewrite.c>
    RewriteEngine On

    RewriteBase /site

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php

    RewriteRule ^index.php$ - [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule .* index.php [L]

</IfModule>
Exit mobile version