htaccess 301跳转到https规则

需要直接写入就行了。 <IfModule mod_rewrite.c> 和</IfModule> 又时候可以不需要。

<IfModule mod_rewrite.c> 

RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteCond %{HTTP_HOST} ^chinae.org [NC]
RewriteRule ^(.*)$ http://www.chinae.org/$1 [L,R=301]
</IfModule>