thinkphp怎么设置404
1个回答
展开全部
ACTION中新建一个文件EmptyAction.class.php,文件中的代码如下:
1
2
3
4
5
6
7
8
<?php
class EmptyAction extends Action{
function _empty(){
header("HTTP/1.0 404 Not Found");//使HTTP返回404状态码
$this->display("Public:404");
}
}
?>
在apache中设置
在你的网站配置中加入 ErrorDocument 404 /404.html 即可。
1
2
3
4
5
6
7
8
<?php
class EmptyAction extends Action{
function _empty(){
header("HTTP/1.0 404 Not Found");//使HTTP返回404状态码
$this->display("Public:404");
}
}
?>
在apache中设置
在你的网站配置中加入 ErrorDocument 404 /404.html 即可。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询