* modifications to the router - nothing dramatic.
[vsc.git] / _res / rewrite.rules
blob2cfe632778f668267b8ef92afeb8a66e3d6527be
1 # rewrite rules for lighttpd
2 url.rewrite-once = (
3      "^/adm/(.*)"               => "/adm/index.php?$1",
4      "^/(.*)"                   => "/index.php?$1"
7 # rewrite rules for apache using .htaccess for each folder
8 # please note to use the rewrite base according to the base folder
9 RewriteEngine on
10 RewriteBase /
11 RewriteCond %{REQUEST_FILENAME} !-f
12 RewriteCond %{REQUEST_FILENAME} !-d
13 RewriteRule ^(.*)$ index.php?$1 [L]