Support How to redirect your forum to https?

wikislo

Registered
add this code to your htaccess (public_html)
Code:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
 
Back
Top Bottom