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