查看“Nginx http重定向到https”的源代码
←
Nginx http重定向到https
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
[[category:nginx]] =301强制重定向= <pre> #注意 是加在 ssl cer 后面 ,加在 前面 可能当作 是 80的 不生效呢 #4 blog server { listen 80; # listen [::]:80 ipv6only=on default_server; listen 443 default ssl; #listen [::]:80; #ssl on; ssl_certificate /etc/letsencrypt/live/linuxchina.net/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/linuxchina.net/privkey.pem; server_name linuxchina.net www.linuxchina.net; #by evan if ($scheme = http) { return 301 https://$server_name$request_uri; } #by evan # server_name blog.linuxchina.net; charset utf-8; root /data/www/evan; index index.php index.html index.htm; #简约格式 server { listen 80; ... return 301 https://$server_name$request_uri; } server { listen 443; ... } </pre> ==my eg== <pre> server { listen 80; listen [::]:80; #listen 443 ssl http2; #listen [::]:443 ssl http2; server_name www.cai.net cai.net; # return 301 https://www.cai.net$request_uri; rewrite ^(.*)$ https://$host$1 permanent; } server { listen 443 ssl http2; listen [::]:443 ssl http2; # listen 443 ssl; server_name www.cai.net cailu.net; # if ( $host = 'www.cai.net' ) { # rewrite ^/(.*)$ https://www.cai.net/$1 permanent; # } #这个是不写多了呢 if ( $host = 'cai.net' ) { rewrite ^/(.*)$ https://www.cai.net/$1 permanent; } </pre> ==不同域名之间跳转 2022== <pre> server { listen 80; server_name kkb.old.com; rewrite ^(.*)$ https://kkb.new.com$1 permanent; 今天的情况是 他们没上新代码 我浪费了 半天时间 curl -I zy.com HTTP/1.1 301 Moved Permanently Server: nginx/1.20.2 Date: Mon, 04 Jul 2022 07:30:43 GMT Content-Type: text/html Content-Length: 169 Connection: keep-alive Location: https://qm.com/ server { listen 80; listen 443 ssl; server_name m.cailuw.com; 尽量加在 证书后面 尽量前 return 301 https://m.cailuw.net$request_uri; } </pre> ==host.com跳https:== <pre> server { listen 80; server_name xnathan.com www.xnathan.com; return 301 https://xnathan.com$request_uri; } </pre> ==www 跳转非 www== <pre> if ($host = 'www.xxx.com' ) { rewrite ^/(.*)$ http://xxx.com/$1 permanent; } </pre> =rewrite方法good june 2022= <pre> server { listen 192.168.1.111:80; server_name test.com; rewrite ^(.*)$ https://$host$1 permanent; } 重定向https的另起一个文件 cat traits.d/enable-redirect-https.conf if ($scheme !~ 'https') { rewrite ^(/.*)$ https://$host$1 permanent; } 域名配置的文件记得 include include traits.d/enable-php.conf; include traits.d/enable-linux.conf; include traits.d/enable-redirect-https.conf; } </pre> =see also= [https://blog.hcl.moe/archives/729 Nginx下HTTP强制重定向至HTTPS] [https://blog.csdn.net/benpaodelulu_guajian/article/details/78456971 服务器 nginx配置ssl并http重定向到https] [https://blog.csdn.net/wzy_1988/article/details/8549290 nginx强制使用https访问(http跳转到https)]
返回至
Nginx http重定向到https
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息