Sending all requests from http to https

Add the following lines to the VirtualHost directive:
RewriteEngine on
Redirect any traffic to https
RewriteRule ^/(.*)$ https://%{HTTP_HOST}/$1 [L,R]
Add the following lines to the VirtualHost directive:
RewriteEngine on
RewriteRule ^/(.*)$ https://%{HTTP_HOST}/$1 [L,R]