2015.10.02 11:49
OEZ
$documentSrl = intval(Context::get('document_srl')); if($documentSrl){ header('Location: http://' . $_SERVER['HTTP_HOST'] . '/index.php?document_srl=' . $documentSrl . '&act=dispChapterViewer'); }
모듈을 만들고있는데 document_srl이 존재하는경우 특정 act으로 넘기고 싶습니다.
어떻게 해야하나요
2015.10.02 15:00
header('Location: ' . getNotEncodedFullUrl('','document_srl',$documentSrl,'act','dispChapterViewer'));
2015.10.07 10:17
감사합니다 .^^
header('Location: ' . getNotEncodedFullUrl('','document_srl',$documentSrl,'act','dispChapterViewer'));