XF 2.0 Enable board URL canonicalization

i think a 301 redirect from HTTP to HTTPS would make more sense so you can also reach subdomains.
Add this to your .htaccess if you use Apache.
Code:
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L][ICODE]
 
i think a 301 redirect from HTTP to HTTPS would make more sense so you can also reach subdomains.
Add this to your .htaccess if you use Apache.
Code:
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L][ICODE]
I agree with you then how to force www to non www in .htaccess
 
Top Bottom