我刚刚在debian 8上重新安装了我的apache服务器 但我不能从“http://IP:8080”转到“https://IP:8080” 这是我的重定向
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]