|
Ok, so I have one more for you. I'm trying to set so that when someone goes to *virtualhost*.mysite.com, it redirects them to mysite.com/browse/*virtualhost*
this is what I've got so far, but it's not working:
RewriteCond %{HTTP_HOST} (.*).mysite.com [nc]
RewriteRule ^/(.*) http://mysite.com/browse/$1
Thanks again for helping me with the last one, it worked great.
|