nginx下http请求强制跳转到https
实现效果:强制从http跳转到https
访问http://dbanote.com/xxx/x.htm跳转到/xxx/x.htm
rewrite方法:
将所有 http 请求通过 rewrite 重定向到 https
server {
listen 80;
server_name xshell.net
rewrite ^(.*)$ https://$host$1 permanent;
}
497状态码跳转
error code 497: normal request was sent to HTTPS
在一个站点只允许 https 访问时, 如果使用 http 访问会报出497错误码
server {
listen 80;
server_name xshell.net
error_page 497 https://$host$uri?$args;
}
Tag标签:「请求 跳转 https」更新时间:「2023-07-24 16:37:25」阅读次数:「758」