标签: nginx
我想只允许特定的用户代理“Mozilla / 4.0”在某些主机上获取某些特定文件:
location ~* ^.+.(txt|doc).*?$ { if ($http_user_agent !~ ^Mozilla/4\.0$) { return 404; } }
并且似乎不起作用,我做错了什么?