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

  

修改根目录. htaccess文件

  
 <代码> & lt; IfModule mod_rewrite.c>
  + FollowSymlinks选项
  RewriteEngine上
  
  # thinkphp去掉index . php
  RewriteCond % {REQUEST_FILENAME} ! - d
  RewriteCond % {REQUEST_FILENAME} ! - f
  RewriteRule ^(. *)美元指数。php/1美元(L PT, QSA)
  
  # http自动跳转到https
  RewriteCond % {SERVER_PORT} ! ^ 443美元
  #只有匹配对应的域名才会跳转
  RewriteCond % {SERVER_NAME} ^ jenny.party | www.jenny.party美元
  RewriteRule (. *) [R] https://% {SERVER_NAME}/1美元
  
  #不带www自动跳转到带www
  RewriteEngine上
  RewriteCond % {http_host} ^ hrsc。cc(数控)
  RewriteRule ^ (. *) https://www.hrsc.cc/1美元(L, R=301)
  & lt;/IfModule>  

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