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

Categories

I have this:

Options -Indexes
RewriteEngine On
RewriteCond %{HTTP_HOST} ^findmyfiver.com$ 
RewriteRule (.*) http://www.findmyfiver.com/$1 [L,R]

Which successfully forces a user to the www. version on the site; however I want to redirect a user to a specific domain and page when they enter:

findmyfiver.com/tester.php to findmyfiver.co.uk/tester.php

How is this done?

See Question&Answers more detail:os

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

1 Answer

Options -Indexes
RewriteEngine On
RewriteCond %{HTTP_HOST} ^findmyfiver.com$ 
# Add a rule to rewrite tester.php to a different domain
# Before your other catch-all rule
RewriteRule ^tester.php http://findmyfiver.co.uk/tester.php [L,R=301,QSA]
RewriteRule (.*) http://www.findmyfiver.com/$1 [L,R]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...