Laravel

How do I redirect http to htaccess https?

Pinterest LinkedIn Tumblr

Add below code in your htaccess file

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

Write A Comment