Skip to content

How to force HTTPS using the .htaccess file in Apache

To force all web traffic to use HTTPS

RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]