我该如何修改所有重定向到除“ l”目录之外的其他网站的代码?另外,例如/ l / test不应该重定向。
location / {
return 301 https://www.example.com$request_uri;
}
location ~ /l {
root /var/www;
rewrite ^(.*)$ /index.php?l=$1 last;
}
答案 0 :(得分:1)
有了这种配置,它就可以工作了!
.../JamiesCorner