Revert bad rename, which missed recent changes to the page.
authorjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Fri, 6 Apr 2007 06:45:40 +0000 (06:45 +0000)
committerjoshtriplett <joshtriplett@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Fri, 6 Apr 2007 06:45:40 +0000 (06:45 +0000)
doc/todo/Autogenerate_a_.htaccess_file_with_redirects_from_foo.html_to_corresponding_index.html.mdwn [new file with mode: 0644]
doc/todo/Document_redirections_for_use_with_usedirs.mdwn [deleted file]

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
new file mode 100644 (file)
index 0000000..56b0d58
--- /dev/null
@@ -0,0 +1,22 @@
+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]]
diff --git a/doc/todo/Document_redirections_for_use_with_usedirs.mdwn b/doc/todo/Document_redirections_for_use_with_usedirs.mdwn
deleted file mode 100644 (file)
index 6f4bb19..0000000
+++ /dev/null
@@ -1 +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?
\ No newline at end of file