如何通过htaccess将referrer页面重定向到test.html?

时间:2016-09-21 06:15:15

标签: php wordpress .htaccess redirect

我想使用htaccess将来自 domain.com 的所有人重定向到 test.html

另外我有WordPress网站,这是什么插件?

我搜索并发现了这个:

RewriteEngine On
RewriteCond %{HTTP_REFERRER} !^http://my.domain [NC]
RewriteRule ^/?first-page.HTML$ http://reffered.domain/ [L,R]

但它对我没用。

我是否在htaccess中犯过任何错误?我是htaccess的新手。

请你帮帮我吗?

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://domain.com [NC]
RewriteCond %{HTTP_REFERER} ^http://www.domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/test.html [L,R]