标签: php nginx
我的问题如下: 我想将301从文件夹重定向到root
https://www.mydomain.de/shop 到
https://www.mydomain.de/
使用.htacces我会创建301重定向。 我如何使用NGINX 感谢
答案 0 :(得分:0)
您应该在服务器块中添加此规则:
location ~ /shop/ { rewrite ^ https://$host permanent; }