Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

apache - .htaccess redirect all pages except the home page

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 is hosted.

RewriteRule (.*) http://www.siteb.com/$1 [R=301,L]

It is working perfectly, however, I need the homepage of site A not to redirect.

What do I need to add to the code above to make that happen?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

RewriteRule (.+) http://www.siteb.com/$1 [R=301,L,NE]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.6k users

...