root/web/vegpath/.htaccess @ 7952
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 [ornext]
|
16 |
RewriteCond $0 ^index.php/
|
17 |
RewriteRule ^.*$ - [last]
|
18 |
|
19 |
# unknown paths
|
20 |
RewriteRule ^.*$ index.php/$0
|