开发者

htaccess rewrite to new domain

开发者 https://www.devze.com 2023-03-23 01:24 出处:网络
I have this: Options -Indexes RewriteEngine On RewriteCond %{HTTP_HOST} ^findmyfiver\\.com$ RewriteRule (.*) http://www.findmyfiver.com/$1 [L,R]

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:

开发者_C百科
findmyfiver.com/tester.php to findmyfiver.co.uk/tester.php

How is this done?


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]
0

精彩评论

暂无评论...
验证码 换一张
取 消