Topic: How do i use SSL with punbb?
Hi guys;
Im trying to use SSL with my forum, i put the code to rediect it to https instead of http in the header file. However it doesnt appear the right style of my forum anymore. I just wonder what i do wrong. If im wrong please explain to me how do i do it?
Here is my code to redirect:
<? if ($_SERVER["SERVER_PORT"] != 443)
{
header('Location: https://xxx.com/Forum/index.php');
}?>
Thanks