问题描述
我的网站遭到攻击,并生成了指向恶意网站的重定向。我已经清理了所有内容,但我一直在 Google SERP 中出现并消失,我必须为受影响的路线生成 404 错误。所以谷歌说这是从搜索中消失的第一步。 现在,Google SERP 中出现的链接已经指向我的网站,但我希望它们生成 404。
所有链接都是这样的:
http://misitioweb.com/?bezstywue=un-monton-de-parametros1
http://misitioweb.com/?bezstywue=un-monton-de-parametros2
http://misitioweb.com/?bezstywue=un-monton-de-parametros3
我想做一切以开头的
http://misitioweb.com/?bezstywue
产生 404 错误
我尝试过类似的脚本
RedirectMatch 404 ^\?bezstywue(.*)$
但是不行 你可以帮帮我吗? 谢谢
解决方法
使用您显示的示例,请尝试以下操作。在测试您的网址之前,请务必清除浏览器缓存。
RewriteEngine ON
RewriteCond %{QUERY_STRING} ^bezstywue$ [NC]
RewriteRule ^/?$ - [R=404,L]
,
您需要检查查询字符串才能执行此操作。你可以试试这样的:
RewriteCond %{QUERY_STRING} ^bezstywue
RewriteRule (.*) - [R=404,L]