HTTPS

I try to make the site redirect to https, how can i do that.

I am interested in that too. How we can force https ?

hi

in your .htaccess write this

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]

1 Like