今天,有位wnmp的用户反映,Nginx访问二级目录的时候不加/(反斜杠)无法访问,现在给出解决办法。
我用的是正则表达式自动加/(反斜杠)。
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}
今天,有位wnmp的用户反映,Nginx访问二级目录的时候不加/(反斜杠)无法访问,现在给出解决办法。
我用的是正则表达式自动加/(反斜杠)。
if (-d $request_filename){
rewrite ^/(.*)([^/])$ http://$host/$1$2/ permanent;
}
学习了,不错
Pingback: Nginx 目录自动加斜线”/” - VPS侦探
Pingback: Nginx 目录自动加斜线”/” | AAVPS