Htaccess File

infiniteshroom/Red/master/.htaccess

REQUEST_FILENAME
RewriteEngine on

# only rewrite if the requested file doesn't exist
RewriteCond %{REQUEST_FILENAME} !index.php$

# pass the rest of the request into index.php to handle     
    RewriteCond %{REQUEST_FILENAME} !-d  
    RewriteCond %{REQUEST_FILENAME} !-f  
    RewriteRule ^(.*)$ ./index.php/$1/ [QSA,L]  

<Files .DS_Store>
    Order allow,deny
    Deny from all
    Satisfy All
</Files>
Exit mobile version