nginx 配置正则表达式块不包括主页

nginx 配置正则表达式块不包括主页

我想阻止所有标识为机器人的 http_user_agents,但让它们进入主页。例如我有网址: https://test.mydomain.org/xyz....只需要请求爬虫到首页https://test.mydomain.org/但不https://test.mydomain.org/xyz...什么正则表达式应该对我的情况有效?

已经为我的 nginx conf 尝试过这个:

.
.
.
location ~* (/.*)$ {
    if ($limit_bots = 1) {
    return 403;
}
.
.
.

相关内容