Can someone please give me an example? I have tried all kinds of htaccess codes but so far I can only make my homepage redirect to the new domain. I want to catch traffic from the entire site and redirect it all to a new domain. =[
yea, thats what I orginally did and it only worked for my main page. The inner pages still wont redirect =[
This is what you have to do then: Options +FollowSymLinks RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] Code (markup):
Hmm... Very strange. You want all the requests to custom-cabinets.org to go somewhere else? Is there anything else in your .htaccess file? Try this: redirectMatch 301 ^(.*)$ http://www.newdomain.com Code (markup):