强制http跳转https
A - 根目录
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://laobuluo.com/$1 [R,L]
如果我们网站在根目录,直接用上面的文件添加到当前根目录的.htaccess文件中,注意红色文字替换成我们自己的网址。
B - 子目录
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} subfolder
RewriteRule ^(.*)$ https://laobuluo.com/subfolder [R,L]
这个是在对应的子目录(subfolder)中,我们根据实际的需要替换自己的网址,以及对应的子目录。
原文地址:https://www.itbulu.com/htaccess-https.html
评论区