.htaccess redirect all pages except the home page

前端 未结 1 834
情话喂你
情话喂你 2020-12-21 05:53

I have just merged two websites. Site A is now merged with site B.

Site A has got a .htaccess file which redirects all of the content to the new domain where site B

相关标签:
1条回答
  • 2020-12-21 06:13

    Just change .* to .+ to make sure your regex pattern isn't matcinng landing page:

    RewriteRule (.+) http://www.siteb.com/$1 [R=301,L,NE]
    
    0 讨论(0)
提交回复
热议问题