http跳转htts的htaccess文件设置
Posted ❦火鸟网络
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http跳转htts的htaccess文件设置相关的知识,希望对你有一定的参考价值。
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R,L]
Options +FollowSymLinks
order allow,deny
allow from all
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=301,L]
</IfModule>
以上是关于http跳转htts的htaccess文件设置的主要内容,如果未能解决你的问题,请参考以下文章