nginx 301 重定向
需求:把 abc.com 301重定向到www.adc.com
环境:lnmp
做法:找到conf配置文件,顶部新增
server{ listen 80; server_name abc.com; return 301 http://www.abc.com$request_uri; }
原来那个server模块里的server_name只留一个www.adc.com就可以
tip:
检查Nginx环境配置命令
nginx -t
热更新配置文件
nginx -s reload
关于热更新详细解读:https://blog.csdn.net/woay2008/article/details/102770759
以上命令如不能用就是没有配置环境变量