Douglas Taylor Active member Licensed customer Dec 15, 2011 #1 if a user surfed to, say, domain.com/forums how could I use .htaccess to automatically have them directed to forums.domain.com Thanks!
if a user surfed to, say, domain.com/forums how could I use .htaccess to automatically have them directed to forums.domain.com Thanks!
Lycaon Well-known member Licensed customer Dec 15, 2011 #2 I believe this would work. Code: RedirectMatch 301 ^/forum/(.*)$ http://forum.domain.com/$1 Upvote 0 Downvote