.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

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -