雷达智富

首页 > 内容 > 网页技术 > 正文

网页技术

静态自动跳转到html页面

2021-11-19 236

打开do/index.php

if(file_exists(dirname(__FILE__)./../.install.php)){
	header(location:install.php);exit;
}elseif(file_exists(dirname(__FILE__)./../.upgrade.php)){
	header(location:upgrade.php);exit;
}

修改为

if(file_exists(dirname(__FILE__)./../.install.php)){
	header(location:install.php);exit;
}elseif(file_exists(dirname(__FILE__)./../.index.htm)){
	header(location:index.htm);exit;
}

同时需要设置好定时任务

赞一波!

文章评论

全部评论