作者:幸运幸福一家人1314_332_887 | 来源:互联网 | 2023-10-12 14:44
我的配置rewritesilosyproduktsiyasilosylast;locationgo{rewritegohttp\:(.*)http:$1permanent;}if(
我的配置
rewrite /silosy /produktsiya/silosy last;
location /go/ {
rewrite /go/http\:/(.*) http://$1 permanent;
}
if (!-e $request_filename){
rewrite ^/(.*) /index.php?$query_string;
}
现在重写“/ go”和“/ silosy”不起作用,因为:“if(!-e $request_filename)”正在使用.如何添加这样的位置限制:
location [not (go|silosy)] {
if (!-e $request_filename){
rewrite ^/(.*) /index.php?$query_string;
}
}
如何“不”在nginx位置寻找?
解决方法:
我不知道怎么会看起来“不”,但我找到了解决办法:
rewrite ^/silosy /produktsiya/silosy permanent;
rewrite ^/go/(.*) http://$1 permanent;
if (!-e $request_filename){
rewrite ^/(.*) /index.php?$query_string;
}