 它在设计时似乎没有考虑到 host:port 和 ssl的结合 于是直接使用: ```nginx if ($server_port !~ 443){ rewrite ^(/.*)$ https://$host$1 permanent; } ``` 而这样设置 假如我访问 `http://127.0.0.1:8000` 那么NGINX酱将会把你带到 `https://127.0.0.1` 结果和我们的目的是相违背的  因为NGINX**不支持**多条件判断,比如: ```NGINX #错误示例 if ($id = 0721 && $uri ~/114514/) {echo "233";} ``` 或者 ```NGINX #错误示例 if ($scheme = "https") { if ($server_port = 8000){ echo "2233"; } } ``` 所以可以采用以下方法: ```nginx if ($server_port = 8000){ set $flag 0; } if ($scheme !~ "https"){ set $flag "${flag}1"; } if ($flag = 01){ return 301 https://$host:$server_port$request_uri; # 返回301状态码,重定向到HTTPS } ``` 在上面的示例中 可完美实现 `http://127.0.0.1:8000` ----> `https://127.0.0.1:8000` (不过性能啥的就不知道了qwq) --- Tips: - 不要忘了清除浏览器缓存!彻底的! Loading...  它在设计时似乎没有考虑到 host:port 和 ssl的结合 于是直接使用: ```nginx if ($server_port !~ 443){ rewrite ^(/.*)$ https://$host$1 permanent; } ``` 而这样设置 假如我访问 `http://127.0.0.1:8000` 那么NGINX酱将会把你带到 `https://127.0.0.1` 结果和我们的目的是相违背的  因为NGINX**不支持**多条件判断,比如: ```NGINX #错误示例 if ($id = 0721 && $uri ~/114514/) {echo "233";} ``` 或者 ```NGINX #错误示例 if ($scheme = "https") { if ($server_port = 8000){ echo "2233"; } } ``` 所以可以采用以下方法: ```nginx if ($server_port = 8000){ set $flag 0; } if ($scheme !~ "https"){ set $flag "${flag}1"; } if ($flag = 01){ return 301 https://$host:$server_port$request_uri; # 返回301状态码,重定向到HTTPS } ``` 在上面的示例中 可完美实现 `http://127.0.0.1:8000` ----> `https://127.0.0.1:8000` (不过性能啥的就不知道了qwq) --- Tips: - 不要忘了清除浏览器缓存!彻底的! 最后修改:2024 年 01 月 04 日 © 允许规范转载 赞 1 如果觉得我的文章对你有用,请随意赞赏