summaryrefslogtreecommitdiff
path: root/doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_i...
diff options
context:
space:
mode:
authorjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-06 06:46:35 +0000
committerjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-06 06:46:35 +0000
commita946f9bf91600fb23697fc0d926b630e64082f87 (patch)
treeda549ae3649b50ce3331a1624bb09ee04bfc9324 /doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn
parenta74c729e8870e26d35edd55cb9e84e9a0515c018 (diff)
Move page again, with all of the changes this time.
Diffstat (limited to 'doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn')
-rw-r--r--doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn22
1 files changed, 0 insertions, 22 deletions
diff --git a/doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn b/doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn
deleted file mode 100644
index 56b0d5890..000000000
--- a/doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn
+++ /dev/null
@@ -1,22 +0,0 @@
-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?
-
-> I was thinking of using an apache RewriteRule for this, haven't written
-> one yet though. --[[Joey]]
-
-> Here's a RewriteRule that I'm using for <http://kitenet.net/>, which
-> has an wiki at the top level that's using index.htmls, and some
-> other stuff that shouldn't be rewritten.
-
- RewriteCond $1 !^/~
- RewriteCond $1 !^/doc/
- RewriteCond $1 !^/ajaxterm
- RewriteCond $1 !^/cgi-bin/
- RewriteCond $1 !.*/index$
- RewriteRule (.+).html $1/ [R]
-
-
->> Nice solution. I think this would work for a newly-converted wiki as well,
->> using a condition to limit rewrites to that wiki's directory, and the
->> rewrite rule you propose. Thus, autogenerating seems unnecessary; we
->> should just have a documented, known-working RewriteCond and RewriteRule
->> for wikis that want to turn on the `usedirs` option. --[[JoshTriplett]]