#^~ 开头对URL路径进行前缀匹配,并且在正则之前。
location ^~/ta/home{
return 403;
}
#表示精确匹配,只有完全匹配上才能生效
location = /yang/{
return 403;
}
#路径重写
#root 定义网站的跟路径
location = / {
rewrite .* /index.html break;
root /usr/local/store/nginx/html;
}
nginx location 匹配规则
于 2023-10-13 15:45:31 首次发布