1

这是我的 .htaccess

RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_REFERER} ^https:\/\/([^.]+.)*?forum.[a-zA-Z_]+ [NC]
RewriteRule ^(.*) http://visitorfromforum.org/ [R,L]

如何将所有流量 [/ 和所有子页面] 重定向到http://visitorfromforum.org/?目前,此重定向仅适用于 /,来自* *forum.org 的访问者点击 mysit.com/images/2013/09/03/index.html 仍然能够看到我的内容。有任何想法吗?:)

4

1 回答 1

1

如果您想将所有当前页面重定向到visitorfromforum.org然后删除您的RewriteCond %{HTTP_REFERER}$1在重定向 URL 中使用:

RewriteEngine On
RewriteBase /

RewriteCond %{HTTP_REFERER} ^https?://.+?\.forum\..+ [NC]
RewriteRule ^(.*)$ http://visitorfromforum.org/$1 [R=301,L]
于 2013-09-25T17:30:18.270 回答