apche codeigniter http自动跳转https

来源:互联网 发布:c语言驱动开发 编辑:程序博客网 时间:2024/06/05 04:16
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On

RewriteCond $1 !^(index\.php|robots\.txt|resources|static|uploads)
RewriteCond %{SERVER_PORT} !^443$

RewriteRule ^(.*)?$ https://%{SERVER_NAME}/$1 [L,R]
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
0 0
原创粉丝点击