找回密码
 立即注册

Apache自动跳转到 HTTPS Apache设置http跳转https

[复制链接]
发表于 2020-4-24 16:23:10 | 显示全部楼层 |阅读模式
苹果上架
Apache自动跳转到 HTTPS Apache设置http跳转https

网站根目录新建 .htaccess
  1. RewriteEngine On
  2. RewriteCond %{SERVER_PORT} 80
  3. RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
复制代码


站点绑定多个域名,只允许www.example.com 跳转

  1. RewriteEngine On
  2. RewriteCond %{SERVER_PORT} 80
  3. RewriteCond %{HTTP_HOST} ^example.com [NC,OR]
  4. RewriteCond %{HTTP_HOST} ^www.example.com [NC]
  5. RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
复制代码
******把网址更改为自己的******



高级用法 (可选)
RewriteEngine on

  1. # 强制HTTPS
  2. RewriteCond %{HTTPS} !=on [OR]
  3. RewriteCond %{SERVER_PORT} 80
  4. # 某些页面强制
  5. RewriteCond %{REQUEST_URI} ^something_secure [OR]
  6. RewriteCond %{REQUEST_URI} ^something_else_secure
  7. RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
  8. # 强制HTTP
  9. RewriteCond %{HTTPS} =on [OR]
  10. RewriteCond %{SERVER_PORT} 443
  11. # 某些页面强制
  12. RewriteCond %{REQUEST_URI} ^something_public [OR]
  13. RewriteCond %{REQUEST_URI} ^something_else_public
  14. RewriteRule .* http://%{SERVER_NAME}%{REQUEST_URI} [R=301,L]
复制代码






回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|一门开发者社区 ( 蜀ICP备17005078号-4 )

GMT+8, 2025-4-4 13:34 , Processed in 0.027989 second(s), 20 queries .

Powered by Discuz! X3.5

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表