if ($request_method != GET) {
return 405;
}
例如
if ($request_method != GET) {
return 405;
}
例如
1
0ZXYDDu796nVCFxq Dec 10, 2019 via Android |
2
sagaxu Dec 10, 2019 via Android
The only 100% safe things which may be done inside if in a location context are:
return ...; rewrite ... last; |