我的网站提供免费的记录器模板,我们通过iframe显示主题的演示。演示网站全部托管在博客上。最近我们收到一个警告,我们的网站包含恶意软件,经过大量搜索,我们发现它不是我们的网站,而是在博客上的一个演示网站上,但由于我们的链接已被索引为该演示网站,所以我们也是因此而受到惩罚。 链接结构如下
hxxp://example.com/index.php?visit = adsensehighctr.blogspot.com(x替换为t) hxxp://example.com/?visit = adsensehighctr.blogspot.com(x替换为t)
以上两个链接都是有警告的链接。
我想将这两个链接的请求重定向到404页面,以便可以从我的网站上删除恶意软件警告。
我尝试了很多选择但没有任何效果。
重定向302 /index.php?visit=adsensehighctr.blogspot.com hxxp://example.com/404? (x替换为t)
这个也行不通。请帮助摆脱这些链接。
该网站基于wordpress。
答案 0 :(得分:0)
你可以在根目录下的一个.htaccess文件中尝试这样的东西。
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !404\.php [NC]
RewriteCond %{QUERY_STRING} (visit=adsensehighctr\.blogspot\.com|visit=adsensehighctr\.blogspot\.com) [NC]
RewriteRule .* /404.php? [R=301,L,NC]
404.php
只是一个示例,请使用正确的/path/Script
替换所有实例。