V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
qsnow6
V2EX  ›  Python

怎么把 https 重定向到 http 协议上

  •  
  •   qsnow6 · 2017-06-22 17:56:46 +08:00 · 4329 次点击
    这是一个创建于 2508 天前的主题,其中的信息可能已经有所发展或是发生改变。
    发现在一些 APP 上强行把 HTTP 协议的 URL 转换成 HTTPS,因为没有做 HTTPS 的认证,所以就打不开网站了。。。

    在没有 HTTPS 的证书情况下,怎么把 HTTPS 的流量重定向回 HTTP 上
    10 条回复    2017-06-23 14:34:36 +08:00
    Yc1992
        1
    Yc1992  
       2017-06-22 18:01:16 +08:00
    降级攻击?
    Genteure
        2
    Genteure  
       2017-06-22 18:07:40 +08:00
    既然没有 HTTPS,这个应该实现不了吧。。重定向之前总是要连到一个什么服务器上的。
    现在证书这么好弄,配个更好吧,Let's Encrypt 之类的
    hjc4869
        3
    hjc4869  
       2017-06-22 18:12:15 +08:00
    cloudflare
    wujunze
        4
    wujunze  
       2017-06-22 18:25:06 +08:00
    用 Nginx 的 rewrite 试试?
    ```shell
    server {
    listen 80;
    server_name my.domain.com;
    [....]
    }

    server {
    listen 443 ssl;
    server_name my.domain.com;
    return 301 http://$server_name$request_uri;
    }
    ```
    简化的 Nginx 配置文件,楼主可以参考一下
    qsnow6
        5
    qsnow6  
    OP
       2017-06-22 18:31:11 +08:00
    @wujunze 谢谢,我试下
    haitang
        6
    haitang  
       2017-06-22 18:36:51 +08:00
    没证书……就算加了跳转也会先提示证书错误吧,甚至如果没有部署监听 443,可能直接就打不开了
    coo
        7
    coo  
       2017-06-22 18:39:17 +08:00
    这是不可行的,首先这需要能通过 HTTPS 访问你的网站。

    但是能通过 HTTPS 访问了,还转 HTTP 干啥?
    misty8873
        8
    misty8873  
       2017-06-22 19:12:27 +08:00
    ios 都必须 SSL 把。。
    my3157
        9
    my3157  
       2017-06-22 20:54:19 +08:00
    #首先, 要 https 能访问

    然后可以这样

    ```
    if ( $scheme = https ){
    return 301 http://$server_name$request_uri;
    }
    ```
    cxbig
        10
    cxbig  
       2017-06-23 14:34:36 +08:00
    打不开网站,应该是 nginx 没有监听 443 端口,按 4 楼说的补齐配置就好。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   925 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 24ms · UTC 23:34 · PVG 07:34 · LAX 16:34 · JFK 19:34
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.