Last change
on this file since 1123 was
1122,
checked in by Sam Hocevar, 16 years ago
|
- Fix documentation page setup.
|
-
Property svn:keywords set to
Id
|
File size:
621 bytes
|
Line | |
---|
1 | # $Id: .htaccess 1122 2006-09-28 01:12:19Z sam $ |
---|
2 | |
---|
3 | # Activated modules |
---|
4 | RewriteEngine on |
---|
5 | |
---|
6 | # We talk utf8 here |
---|
7 | AddDefaultCharset utf-8 |
---|
8 | |
---|
9 | # Disallowed files: .htaccess, .htpasswd, .svn etc. |
---|
10 | <Files ~ "^\.ht"> |
---|
11 | Order allow,deny |
---|
12 | Deny from all |
---|
13 | </Files> |
---|
14 | |
---|
15 | <Files ~ "^\.svn"> |
---|
16 | Order allow,deny |
---|
17 | Deny from all |
---|
18 | </Files> |
---|
19 | |
---|
20 | # MIME Types |
---|
21 | AddType application/x-cgi-php .html |
---|
22 | Action application/x-cgi-php /cgi-bin/php4 |
---|
23 | AddType text/css .css |
---|
24 | |
---|
25 | # Redirects for disallowed stuff |
---|
26 | RewriteRule ^.svn/.* /.svn/ [L] |
---|
27 | RewriteRule (.*)/.svn/.* /$1/.svn/ [L] |
---|
28 | |
---|
29 | # Redirects for manual |
---|
30 | RewriteRule ^manual/$ /manual.html?page=index [L] |
---|
31 | RewriteRule ^manual/(.*)[.]html /manual.html?page=$1 [L] |
---|
32 | |
---|
Note: See
TracBrowser
for help on using the repository browser.