如何使用nginx将一个页面请求重定向到另一个页面

时间:2016-01-27 15:40:05

标签: nginx

我想将http://example.com/balcony-covers/重定向到
永久http://example.com/balcony-screens/。我怎么能在nginx中做到这一点。

1 个答案:

答案 0 :(得分:2)

使用您的nginx.conf文件。

location /balcony-covers/ {
    return 301 $scheme://$host/balcony-screens/;
}

server