娃哈哈好喝-真的!
技术够用就行,吃好喝好睡好!

Nginx 301重定向

301重定向是很常见的需求,比如访问 wahahahaohe.com,自动跳到 www.wahahahaohe.com。或者倒过来也可以。Nginx 中配置301重定向(301 redirect)很容易,下面介绍下方法。

打开站点的配置文件,在server中添加:

server{

server_name www.wahahahaohe.com wahahahaohe.com;
if ($host != ‘www.wahahahaohe.com’ ) {
rewrite ^/(.*)$ https://www.wahahahaohe.com/$1 permanent;
}

保存退出

nginx -t 测试没问题再重载一下

nginx -s reload

赞(0)
未经允许不得转载:娃哈哈好喝 » Nginx 301重定向
分享到: 更多 (0)