Type: StacksmithDescription: I want to ask how to redirect HTTPS with Apache
In your virtualhost configuration try this:
RewriteEngine on RewriteCond %{SERVER_NAME} =www.yourdomain.com [OR] RewriteCond %{SERVER_NAME} =yourdomain.com RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,QSA,R=permanent]