student numbers
[ssproject1617.git] / testcms-final-anon / htaccess.txt
1 <IfModule mod_rewrite.c>
2 RewriteEngine On
3 # RewriteBase /
4
5 # Allow any files or directories that exist to be displayed directly
6 RewriteCond %{REQUEST_FILENAME} !-f
7 RewriteCond %{REQUEST_FILENAME} !-d
8
9 # Rewrite all other URLs to index.php/URL
10 RewriteRule ^(.*)$ index.php?/$1 [L,QSA]
11 </IfModule>
12
13 <IfModule !mod_rewrite.c>
14 ErrorDocument 404 index.php
15 </IfModule>