location / {
if ($request_uri = /) {
return 403;
}
}
例如访问: https:www.test.com
或者 https:www.test.com/
,都将返回403
其他具体路径仍然可以访问,例如 https:www.test.com/example.html
location / {
if ($request_uri = /) {
return 403;
}
}
例如访问: https:www.test.com
或者 https:www.test.com/
,都将返回403
其他具体路径仍然可以访问,例如 https:www.test.com/example.html
您的IP:
评论 (0)