본문으로 바로가기

xe 로그인 풀리지 않게

category Server/Webserver_XE 2021. 11. 18. 16:45
반응형

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

 

xe/index.php 파일을 열어..

define('__ZBXE__', true); 다음행에 아래코드를 추가해 주시면됩니다.


1.preg_match('@^(www.)(.*)@', $_SERVER['HTTP_HOST'], $www_url);
2.if($www_url[1]) {
3.@header('Location: http://' . $www_url[2] . $_SERVER['REQUEST_URI']);
4.}

 

반응형