.htaccess 我如何410一个有毒的Prestashop URL模式?

lawou6xi  于 2023-02-19  发布在  其他
关注(0)|答案(1)|浏览(99)

我一直在尝试410一个模式的几千个有毒的网址,得到了谷歌索引为我的客户之一。我希望每个网址的网站,其中包含?%发送410响应代码,使他们得到去索引。
URL示例:

https://www.example.com/fr/promotions?%25252525253Bid_lang=6&p=6

我试着把它放在.htaccess中,If模块部分的上面,就像我在这里的另一个线程中发现的那样,但是它没有工作,有什么想法吗?

RewriteRule ^[a-z]shop($|/) - [G]
bksxznpy

bksxznpy1#

我想每个网址的网站包含?%发送一个410响应代码
.htaccess文件的顶部使用mod_rewrite:

# Send 410 for any URL where the query string starts with "%"
RewriteCond %{QUERY_STRING} ^%
RewriteRule ^ - [G]

相关问题