0

我正在编写一个重写条件,以将来自主机 abc.com 的任何页面重定向到我的网站主页。

我的网站名称mysite.com,我想在那里写重写规则。

重定向 abc.com/* 到我的主页

Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(www\.)?test\.com$ [NC]
RewriteRule ^ http://mysite.com/ [L,R=301]
#I doubt how to redirect it to my current website home page

我还想将来自的任何页面重定向cdf.com/cdf/*

将 cdf.com/* 重定向到 /cdf/*

RewriteCond %{HTTP_HOST} ^(www\.)?cdf\.com$ [NC]
RewriteRule ^ /cdf/$1 [L,R=301]

请帮助我正确的重写规则?

我怀疑我是否必须提及完整的网站地址。

4

0 回答 0