jbagaresgaray/ENTRANCE-EXAM/master/server/quiz/.htaccess - Htaccess File

jbagaresgaray/ENTRANCE-EXAM/master/server/quiz/.htaccess

DirectoryIndex index.php
<IfModule mod_rewrite.c>
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-s
  RewriteRule ^(.*)$ index.php/$1 [QSA,NC,L]

  RewriteCond %{REQUEST_FILENAME} -d
  RewriteRule ^(.*)$ index.php [QSA,NC,L]

  RewriteCond %{REQUEST_FILENAME} -s
  RewriteRule ^(.*)$ index.php [QSA,NC,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache