我是靠谱客的博主 凶狠大象,最近开发中收集的这篇文章主要介绍http请求域名强制跳转https,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

网站添加了https证书后,当http方式访问网站时就会报404错误,所以需要做http到https的强制跳转设置.

---------------一、采用nginx的rewrite方法---------------------
下面是将所有的http请求通过rewrite重写到https上。
例如将所有的www.nihao.com域名的http访问强制跳转到https。
下面配置均可以实现:

server {
    listen 80;
    server_name www.nihao.com;
    index index.html index.php index.htm;

    access_log  /usr/local/nginx/logs/8080-access.log main;
    error_log  /usr/local/nginx/logs/8080-error.log;
    
    #重点在此
    if ($host ~* "^nihao.com$") {
    rewrite ^/(.*)$ https://www.nihao.com/ permanent;
    }

    location ~ / {
        root  html;
        index index.html index.php index.htm;
    }
}

最后

以上就是凶狠大象为你收集整理的http请求域名强制跳转https的全部内容,希望文章能够帮你解决http请求域名强制跳转https所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部