.htaccess - how to redirect only home page of one domain to other domain? -
I want to send domain1.com home page only to keep all the sub pages from dom1.com. Com
I've added it to the htaccess file:
Rewrite rule ^ $ http://www.domain2.com/ [R = 302, L] Rewrite% {HTTP_HOST} ^ www \ .domain1 \. Com $ [nc] Revittium ^ (. *) $ Http://domain1.com/$1 [R = 301, L] Everything is www.domain1.com/subpage. Excluding the html still works fine on www.domain2.com.
Please provide a solution for this.
Thanks in advance!
You can use:
RewriteEngine On RewriteCond% { HTTP_HOST} ^ (www \.)? Domain1 \ .com $ [NC] Rev. Raul ^ $ http://www.domain2.com/ [R = 302, L]
Comments
Post a Comment