您的位置 首页 > 腾讯云社区

nginx设置http 301重定向到https---ytkah

  今天有位客户问ytkah在nginx服务器如何设置http 301重定向到https,其实不难。他的服务器安装宝塔面板了,更好操作了。进入站点设置的配置文件,如下图所示,在第11行左右加入跳转代码  

    #301-START     if ($host ~ '^abc.com'){   return 301 https://www.abc.com/$request_uri; } #301-END #301-START if ( $scheme = http ){     return 301 https://$server_name$request_uri;     #或return 301 https://www.abc.com/$request_uri;   } #301-END

另外一种方法是直接在nginx配置文件里改,一般是在会在 /usr/local/nginx/conf/nginx.conf

server { listen 80; ... return 301 https://$server_name$request_uri; } server { listen 443; ... } ---来自腾讯云社区的---ytkah

关于作者: 瞎采新闻

这里可以显示个人介绍!这里可以显示个人介绍!

热门文章

留言与评论(共有 0 条评论)
   
验证码: