Author: crossley
Date: Wed Apr 20 20:06:13 2005
New Revision: 162110
URL: http://svn.apache.org/viewcvs?rev=162110&view=rev
Log:
Fix the redirect for the removed document "mail-archives.*".
Redirect some specific documents to the 0.7-dev version.
Redirect /docs/plugins /0.7/docs/plugins
Doing this in small stages to try not to bust everything.
Modified:
forrest/site/.htaccess
Modified: forrest/site/.htaccess
URL: http://svn.apache.org/viewcvs/forrest/site/.htaccess?rev=162110&r1=162109&r2=162110&view=diff
==============================================================================
--- forrest/site/.htaccess (original)
+++ forrest/site/.htaccess Wed Apr 20 20:06:13 2005
@@ -1,5 +1,12 @@
-RedirectMatch Permanent ^mail-archives(.*) http://forrest.apache.org/mail-lists$1
AddDefaultCharset UTF-8
+
+RedirectMatch /mail-archives(.*) http://forrest.apache.org/mail-lists$1
+
+RedirectMatch /proposal-asf-(.*) http://forrest.apache.org/0.7/proposal-asf-$1
+RedirectMatch /live-sites(.*) http://forrest.apache.org/0.7/live-sites$1
+RedirectMatch /forrest-issues(.*) http://forrest.apache.org/0.7/forrest-issues$1
+
+Redirect /docs/plugins http://forrest.apache.org/0.7/docs/plugins
<Files ~ "\.(dtd|mod)$">
ForceType application/xml-dtd
|