Apache .htaccess如何设置自动跳转到HTTPS

2022-02-15 09:30:41 浏览数 (1)

网站根目录下新建.htaccess 文件

写入以下内容

方法一

Bash

代码语言:javascript复制
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]

方法二

Bash

代码语言:javascript复制
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTP_HOST} ^ahaoyw.cn [NC,OR]
RewriteCond %{HTTP_HOST} ^www.ahaoyw.cn [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]

PS:其中ahaoyw.cn和www.ahaoyw.cn为网站域名

如果.htaccess 伪静态规则不生效,需要编辑站点配置文件或者httpd.conf修改如下配置

Bash

代码语言:javascript复制
Options FollowSymLinks 
AllowOverride None

改为如下

Bash

代码语言:javascript复制
Options FollowSymLinks 
AllowOverride All

开启mod_rewrite扩展

Bash

代码语言:javascript复制
LoadModule rewrite_module modules/mod_rewrite.so

测试结果

更多 .htaccess用法可以参考 Apache .htaccess常用方法代码

0 人点赞