Htaccess File

XZzYassin/HelpServer/master/.htaccess

GET, REQUEST_FILENAME, REQUEST_URI, THE_REQUEST
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{THE_REQUEST} ^GET.*index.php [NC]
    RewriteCond %{REQUEST_URI} !/system/.* [NC]
    RewriteRule (.*?)helpserver/index.php/*(.*) /$1$2 [R=301,NE,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ helpserver/index.php/$1 [L]
    Options -Indexes
</IfModule>
Exit mobile version