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