Project

General

Profile

1
#### URL resolution
2

    
3
DirectorySlash on
4
DirectoryIndex index.php index.htm
5

    
6
### mod_rewrite
7

    
8
RewriteEngine on
9
RewriteOptions inherit
10
RewriteBase /
11

    
12
# unknown paths
13
RewriteCond %{REQUEST_FILENAME} !-d
14
RewriteCond %{REQUEST_FILENAME} !-f
15
RewriteCond %{REQUEST_FILENAME} !-l
16
RewriteCond $0 !^index.php
17
RewriteRule ^.*$ index.php/$0
(1-1/5)