JoyFreak Well-known member Feb 21, 2018 #1 What does this mean? I don't understand the description either.
Chris D XenForo developer Staff member Feb 21, 2018 #2 It will automatically redirect users to your board URL if they come to the site from a URL. So say your board URL is http://yoursite.com but they visit http://www.yoursite.com then they will be redirected automatically to http://yoursite.com. Upvote 0 Downvote
It will automatically redirect users to your board URL if they come to the site from a URL. So say your board URL is http://yoursite.com but they visit http://www.yoursite.com then they will be redirected automatically to http://yoursite.com.
Asser Active member Sep 13, 2018 #4 Chris D said: It will automatically redirect users to your board URL if they come to the site from a URL. So say your board URL is http://yoursite.com but they visit http://www.yoursite.com then they will be redirected automatically to http://yoursite.com. Click to expand... So .. also if users come from http:// he will be redirect to https:// if its enabled ? Am i right? Upvote 0 Downvote
Chris D said: It will automatically redirect users to your board URL if they come to the site from a URL. So say your board URL is http://yoursite.com but they visit http://www.yoursite.com then they will be redirected automatically to http://yoursite.com. Click to expand... So .. also if users come from http:// he will be redirect to https:// if its enabled ? Am i right?
JoyFreak Well-known member Sep 13, 2018 #5 Asser said: So .. also if users come from http:// he will be redirect to https:// if its enabled ? Am i right? Click to expand... Yes. Upvote 0 Downvote
Asser said: So .. also if users come from http:// he will be redirect to https:// if its enabled ? Am i right? Click to expand... Yes.
Tealk Well-known member Sep 13, 2018 #6 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] Upvote 0 Downvote
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]
Asser Active member Sep 13, 2018 #7 Tealk said: 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] Click to expand... I agree with you then how to force www to non www in .htaccess Upvote 0 Downvote
Tealk said: 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] Click to expand... I agree with you then how to force www to non www in .htaccess