How do I force my website to use http/https (SSL)?

Category: | Tag:

You can force your website (all pages) to use http or https by modifying your .htaccess file.

Just insert below small lines to the beginning of the .htaccess file.

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

[Change yourdomain.com to your real domain name]

Copyright © 2025 Siam Naulak.
magnifiercrossmenu