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