MyBB Community Forums

Full Version: redirrect forum adress http*
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Howdy MyBB team,

my server supports https

i want to redirrect from (with or without)

www.
http://
http://www.
*.mydomain.com

in to:

https://mydomain.com
or
https://www.mydomain.com
 
both methods are good for me Big Grin


what (redirrect rules) should i add to .htaccess?
Thank you in advance!
MyBB rocks Cool
Try this in the htaccess file:

RewriteCond %{HTTP_HOST} ^YOURDOMAIN.TPL$
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/YOURMYBBFOLDER/$1 [R=301,L]

This is for www.

Please change "YOURDOMAIN" and the Toplevel "TPL" to myforum.com as example.

And also change "YOURMYBBFOLDER" to your root forum folder.

Hope this works for you... I did not tried it.

Please rate my answer, if this was helpful for you. =)
(2015-05-03, 02:09 PM)skrilaxrev Wrote: [ -> ]Try this in the htaccess file:


RewriteCond %{HTTP_HOST} ^YOURDOMAIN.TPL$

RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/YOURMYBBFOLDER/$1 [R=301,L]

This is for www.

I "see it" a little bit difficult ;

my forum is on root
and it's escritoriobase.com

so:

RewriteCond %{HTTP_HOST} ^ESCRITORIOBASE.COM$
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/ESCRITORIOBASE/$1 [R=301,L]



Like that?