Last change
on this file since 1379 was
1379,
checked in by Sam Hocevar, 14 years ago
|
- More information about the mailing-lists.
|
-
Property svn:keywords set to
Id
|
File size:
980 bytes
|
Line | |
---|
1 | # $Id: .htaccess 1379 2006-11-12 21:48:16Z 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 and lists |
---|
30 | RewriteRule ^manual/$ /manual.html?page=index [L] |
---|
31 | RewriteRule ^manual/(.*)[.]html /manual.html?page=$1 [L] |
---|
32 | RewriteRule ^list/$ /list.html?page=threads [L] |
---|
33 | RewriteRule ^list/(.*)[.]html /list.html?page=$1 [L] |
---|
34 | RewriteRule ^list-svn/$ /list-svn.html?page=threads [L] |
---|
35 | RewriteRule ^list-svn/(.*)[.]html /list-svn.html?page=$1 [L] |
---|
36 | |
---|
37 | # Misc. redirects |
---|
38 | RewriteRule ^([^/]*).(gz|bz2|zip) /files/$1.$2 [R=permanent,L] |
---|
39 | RewriteRule ^images/(.*) /img/$1 [R=permanent,L] |
---|
40 | |
---|
Note: See
TracBrowser
for help on using the repository browser.