Project

General

Profile

1
#### URL resolution
2

    
3
DirectorySlash on
4
DirectoryIndex index.php
5

    
6
### mod_rewrite
7

    
8
RewriteEngine on
9
RewriteOptions inherit
10
RewriteBase /
11

    
12
# don't rewrite existing paths
13
RewriteCond %{REQUEST_FILENAME} -d [ornext]
14
RewriteCond %{REQUEST_FILENAME} -f [ornext]
15
RewriteCond %{REQUEST_FILENAME} -l
16
RewriteRule ^.*$ - [last]
17

    
18
# non-filesystem paths
19
ErrorDocument 404 /index.php
(1-1/5)