묻고답하기
index 수정은 어느파일로 하면될까요?
2017.04.06 10:25
제가 메인접속시 특정주소로 자동으로 이동하겠끔 해놓았는대 문제는 0초로 설정하여 관리버튼을 누룰새도 없이 넘어가 버립니다. ㅜ.ㅜ 이를 수정해야하는대 페이지 수정을 누를새가 없어서요.
문서를 직접 수정할 순 없는지요?
index.php를 열어보니
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
**/
/**
* @brief Declare constants for generic use and for checking to avoid a direct call from the Web
**/
define('__XE__', TRUE);
/**
* @brief Include the necessary configuration files
**/
require dirname(__FILE__) . '/config/config.inc.php';
/**
* @brief Initialize by creating Context object
* Set all Request Argument/Environment variables
**/
$oContext = Context::getInstance();
$oContext->init();
/**
* @brief If default_url is set and it is different from the current url, attempt to redirect for SSO authentication and then process the module
**/
if($oContext->checkSSO())
{
$oModuleHandler = new ModuleHandler();
try
{
if($oModuleHandler->init())
{
$oModuleHandler->displayContent($oModuleHandler->procModule());
}
}
catch(Exception $e)
{
htmlHeader();
echo Context::getLang($e->getMessage());
htmlFooter();
}
}
$oContext->close();
/* End of file index.php */
/* Location: ./index.php */
이런 내용만 있네요. 메인을 수정하려면 어느 파일을 고쳐야 할까요?
템플릿 파일이 따로 존재합니다. layouts/사용중인 레이아웃/layout.html 을 수정하시면 됩니다.