Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: BuddyBar for bbPress


Rohan Kapoor
Participant

@rohan_kapoor

Anyone good with .htaccess rewrite rules?

I stuck the following in a blank .htaccess but it doesn’t seem to be executing.

RewriteEngine On

RewriteCond %{HTTP_HOST} ^[^.w{3}]+.zyrot.com$
RewriteRule ^$ %{HTTP_HOST} [C]
RewriteRule ^([^.w{3}]+).zyrot.com$ http://wpmu.zyrot.com/forums/ [R=301,L]

What I’m trying to do is get .htaccess to execute forums.zyrot.com as wpmu.zyrot.com/forums/

Thanks

EDIT: I managed to get it work a little like this:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^[^.w{3}]+.zyrot.com$
RewriteRule ^$ %{HTTP_HOST} [C]
RewriteRule ^([^.w{3}]+).zyrot.com$ http://wpmu.zyrot.com/forums/ [R=301,L]
</IfModule>

My only problem is that i want it to appear as forums.zyrot.com. Any ideas people?

Skip to toolbar