]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn
27dcbd9d32e43fea18e0fc37c9f48cfcc7ad604f
[git.ikiwiki.info.git] / doc / todo / Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn
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?
3 > I was thinking of using an apache RewriteRule for this, haven't written
4 > one yet though. --[[Joey]]
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.
10         RewriteCond $1 !^/~
11         RewriteCond $1 !^/doc/
12         RewriteCond $1 !^/cgi-bin/
13         RewriteRule (.+).html $1/ [R]
14         #RewriteRule /~family/(.+).html /~family/$1/ [R]