root/web/vegpath/.htaccess @ 7905
1 |
#### URL resolution
|
---|---|
2 |
|
3 |
DirectorySlash on |
4 |
DirectoryIndex index.php index.htm
|
5 |
|
6 |
### mod_rewrite
|
7 |
|
8 |
RewriteEngine on |
9 |
RewriteBase /
|
10 |
|
11 |
# unknown paths
|
12 |
RewriteCond %{REQUEST_FILENAME} !-d
|
13 |
RewriteCond %{REQUEST_FILENAME} !-f
|
14 |
RewriteCond %{REQUEST_FILENAME} !-l
|
15 |
RewriteCond $0 !^index.php
|
16 |
RewriteRule ^.*$ index.php?$0
|