대부분의 문제는 www가 붙었냐 붙었지 않았냐에 따라서 세션이 다르게 취급되기 때문. 따라서 언제나 닥치고 www를 붙이도록 하면 된다.

index.php에 이런 걸 붙이면 된다. 메모장으로 열어서 대충 붙여도 큰 문제 없더군.
 preg_match('@^(www\.)(.*)@', $_SERVER['HTTP_HOST'], $www_url);
if($www_url[1]) {
@header('Location: http://' . $www_url[2] . $_SERVER['REQUEST_URI']);
}

http://www.xpressengine.com/index.php?mid=tip&document_srl=19787880