标签: http redirect https url-rewriting
当我尝试转到http://www.example.com/site1
我需要
https://www.example.com/index.php
我如何立即进入https://www.example.com/site1?
RewriteCond %{SERVER_PORT} 80 RewriteCond %{HTTP_HOST} ^(www\.)?example\.com RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]