From 54611c2b9defce384b40eea0158ebedb24d98a8b Mon Sep 17 00:00:00 2001 From: donncha Date: Fri, 22 Aug 2008 14:50:49 +0000 Subject: No need for / prefix on rewrite rule, fixes #702, props kipit git-svn-id: http://svn.automattic.com/wordpress-mu/branches/2.6@1429 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- htaccess.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'htaccess.dist') diff --git a/htaccess.dist b/htaccess.dist index 8992f01..a10abfe 100644 --- a/htaccess.dist +++ b/htaccess.dist @@ -8,7 +8,7 @@ RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteCond %{REQUEST_URI} ^.*/wp-admin$ -RewriteRule ^(.+)$ /$1/ [R=301,L] +RewriteRule ^(.+)$ $1/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d -- cgit