大家好,我一直在学习使用 SetEnvIfNoCase User-Agent
和通配符的通配符方法,
但是使用下面的示例。如果用户代理与通配符匹配,则仅提供 403 错误页面。
但我想要的是将“用户代理”重定向到另一个网站,例如黑洞或垃圾邮件页面。
使用类似的东西RewriteRule ^(.*)$ http://send junk to here/
SetEnvIfNoCase User-agent "(B2|Bac|Bad|Bag|Bai|Bast|Batch|Bing|Bite|Bla|Blex)" bad_bot=yes
#
Order Allow,Deny
Allow from All
Deny from env=bad_bot
我可以用什么替换 Deny from env=bad_bot
它以使其重定向到所需的网站,而不是提供 403 错误页面。