打开网站的配置文件:XXX.conf,
在<VirtualHost *:80>下面添加以下代码;
RewriteEngine on
RewriteRule ^(.*)$ https://blog.haozi.org$1 [R=301,L]
将代码中的网址换成自己的网址就可以了。
配置完成后,重启Apache即可。
下面规则中蜗牛使用的域名是blog.haozi.org或haozi.org,使用时请根据自己需要更改为自己的域名。至于规则放置到什么位置,一般我们可以选择放到到apache的conf配置文件对应位置,或指定站点目录 .htaccess 文件内容的头部。
1、强制HTTPS方式访问,对WWW或顶级域名不做跳转。
RewriteEngine OnRewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://blog.haozi.org/$1 [L,R=301]
2、强制HTTPS方式访问,并自动将顶级域名跳转到WWW。
RewriteEngine OnRewriteCond %{HTTP_HOST} !^blog.haozi.org$ [NC]RewriteRule ^(.*)$ https://blog.haozi.org/$1 [L,R=301]RewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://blog.haozi.org/$1 [L,R=301]
3、强制HTTPS方式访问,并自动将WWW跳转到顶级域名。
RewriteEngine OnRewriteCond %{HTTP_HOST} !^haozi.org$ [NC]RewriteRule ^(.*)$ https://haozi.org/$1 [L,R=301]RewriteCond %{SERVER_PORT} 80RewriteRule ^(.*)$ https://haozi.org/$1 [L,R=301]
还没有评论,来说两句吧...