NGINX文件夹转ROOT重定向/重写

时间:2016-10-24 17:28:05

标签: php nginx

我的问题如下: 我想将301从文件夹重定向到root

https://www.mydomain.de/shop

https://www.mydomain.de/

使用.htacces我会创建301重定向。 我如何使用NGINX 感谢

1 个答案:

答案 0 :(得分:0)

您应该在服务器块中添加此规则:

location ~ /shop/ {
            rewrite ^ https://$host permanent;
    }