germs12 Posted January 15, 2007 Share Posted January 15, 2007 Hey Everybody!I am having some simple (i hope) issues with .htaccess file and was wondering if I could get some direction...I have a site: www.example1.com that has sub domains sub1.example1.com, sub2.example.com, etc...What I need to do is redirect from www.example1.com -> www.example2.com, but not redirect when I hit the sub domain sub1.example1.com or sub2.example1.comI have currently have [code]RedirectMatch temp ^/$ http://www.example2.comRedirect /sub1 http://sub1.example1.com [/code] But the second Redirect does not seem to work, its like it is overridden by the first one (and yes, i have swapped the two to see if order matters). I have searched lots of pages that discuss redirection, but no sites seem to cover sub-domains and multiple sites.Thanks in advance for any help freaks! Quote Link to comment Share on other sites More sharing options...
steviewdr Posted January 16, 2007 Share Posted January 16, 2007 Put this in a htaccess file on the server www.example1.com:Redirect 301 / http://www.example2.comP.S. using a 302 might be better, but 301 will work for the time been.-steve Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.