.htaccess 如何阻止空用户代理请求

70gysomp  于 2022-11-16  发布在  其他
关注(0)|答案(1)|浏览(154)

有没有什么解决方案可以防止http请求中的用户代理字符串为空,最好使用.htaccess?

t3psigkw

t3psigkw1#

#redirect empty user agent, UNLESS it's accessing the RSS feed
RewriteCond %{HTTP_USER_AGENT} ^$ 
RewriteCond %{REQUEST_URI} !^/rss.php # <-- path to rss.php
RewriteRule .* http://%{REMOTE_ADDR}/ [R,L]

存档的源:http://wiki.e107.org/index.php?title=Htaccessexample

相关问题