How to redirect all http request into https using htaccess?
To redirect http url or request into https version you need to add certain rules into .htaccess file. To do this you need to create .htaccess file or edit if you already have it. Add the following rule in .htaccess file:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://yourdomain.com/$1 [R,L]
The third line does the main work. It redirects all request into https version. Just change yourdomain.com into your suitable one. Thats all.
Recent Comments