htaccess rewrite to new domain

为君一笑 提交于 2019-12-18 09:36:46

问题


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?


回答1:


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]


来源:https://stackoverflow.com/questions/6845442/htaccess-rewrite-to-new-domain

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!