码迷,mamicode.com
首页 > Web开发 > 详细

Apache由http自动跳转到https的方法

时间:2018-02-07 19:50:04      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:ons   https   symlink   自动   iter   thinkphp   pac   tac   option   

修改根目录.htaccess文件

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

#thinkphp去掉index.php
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

    #http自动跳转到https
  RewriteCond %{SERVER_PORT} !^443$
    #只有匹配对应的域名才会跳转
  RewriteCond %{SERVER_NAME} ^hrsc.cc|www.hrsc.cc$
  RewriteRule (.*) https://%{SERVER_NAME}/$1 [R]
</IfModule>

Apache由http自动跳转到https的方法

标签:ons   https   symlink   自动   iter   thinkphp   pac   tac   option   

原文地址:http://blog.51cto.com/keefe/2069936

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!