Redirect previous BuddyPress permalinks
-
hello…
i’m trying to get this to work http://codex.buddypress.org/getting-started/install-buddypress-on-a-secondary-blog/
but when i add
RedirectMatch 301 ^/members/(.*)$ http://subdomian.mydomian.com/members/$1
RedirectMatch 301 ^/groups/(.*)$ http://subdomian.mydomian.com/groups/$1
RedirectMatch 301 ^/blogs/(.*)$ http://subdomian.mydomian.com/blogs/$1
RedirectMatch 301 ^/forums/(.*)$ http://subdomian.mydomian.com/forums/$1to my .htaccess file i get a infinite loop error
my .htaccess file looks like this
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RedirectMatch 301 ^/members/(.*)$ http://subdomian.mydomian.com/members/$1
RedirectMatch 301 ^/groups/(.*)$ http://subdomian.mydomian.com/groups/$1
RedirectMatch 301 ^/blogs/(.*)$ http://subdomian.mydomian.com/blogs/$1
RedirectMatch 301 ^/forums/(.*)$ http://subdomian.mydomian.com/forums/$1RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]this is the .htaccess code provided in the super admin area of my wordpress mutilsite with the added code provide in the howto page http://codex.buddypress.org/getting-started/install-buddypress-on-a-secondary-blog/
pleeeease what am i doing wrong?
thanks bunches!
- The topic ‘Redirect previous BuddyPress permalinks’ is closed to new replies.