6a2ef05e54a3d33bdb626f6ae1f56a8111fd89ad
[ikiwiki.git] /
1 Now that ikiwiki supports using page/index.html rather than page.html, how about some mechanism to automatically generate a .htaccess file with "Redirect permanent" lines for each such page?
2
3 > I was thinking of using an apache RewriteRule for this, haven't written
4 > one yet though. --[[Joey]]
5
6 > Here's a RewriteRule that I'm using for <http://kitenet.net/>, which
7 > has an wiki at the top level that's using index.htmls, and some
8 > other stuff that shouldn't be rewritten.
9
10         RewriteCond $1 !^/~
11         RewriteCond $1 !^/doc/
12         RewriteCond $1 !^/cgi-bin/
13         RewriteCond $1 !^/index
14         RewriteRule (.+).html $1/ [R]
15
16         #RewriteRule /~family/(.+).html /~family/$1/ [R]