其他分享
首页 > 其他分享> > nignx location 301 Moved Permanently

nignx location 301 Moved Permanently

作者:互联网

nginx配置pc.conf文件如下:

server {
    listen 80;
    server_name www.zhongyuan.com;
    #root /usr/share/nginx/html/pc;
    location / {
      root /usr/share/nginx/html/pc;
  }
    location /about {
      root /usr/share/nginx/html;
  }
}

使用curl命令测试连通性,结果一直返回301 moved permanently。确认了配置无误后经查是由于页面经过nginx被重定向所以返回301,最后添加参数curl -L即可自动重定向到指定页面,搞定。

也可以直接curl www.zhongyuan.con/anout/       ###about后面加上/

 

标签:nginx,Moved,share,pc,nignx,html,location,curl
来源: https://www.cnblogs.com/zzy01/p/15026773.html