网站根目录下新建.htaccess 文件
写入以下内容
Bash
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
Bash
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
Options FollowSymLinks
AllowOverride None
改为如下
Bash
Options FollowSymLinks
AllowOverride All
开启mod_rewrite扩展
Bash
LoadModule rewrite_module modules/mod_rewrite.so
更多 .htaccess用法可以参考 Apache .htaccess常用方法代码
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。