Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在谷歌上搜索,我真的需要知道如何在 .htaccess 上只允许一个用户代理?
我发现的只是如何在专用或私人服务器上执行此操作。
如果您要允许的用户代理是:Lynx/2.8.8dev.12
Lynx/2.8.8dev.12
然后,您希望在要限制的目录的 htaccess 中使用这些规则:
RewriteEngine On RewriteCond %{HTTP_USER_AGENT} !Lynx/2\.8\.8dev\.12 [NC] RewriteRule ^ - [F,L]
使用 403 禁止所有其他用户代理。