1、首先进到yii框架的frontend\config文件夹下,里面有一个main.php文件,打开编辑,修改其中的控制器名和方法名:
2、然后进到controllers控制器中,在控制器code里面添加error方法。
3、最后在v层创建你的视图(这里是error.php):
<?phpuse yii\helpers\html;$this->title = $name;$this->context->layout = false; //不使用布局,或者改为自己所需要使用的布局?><!doctype html public "-//w3c//dtd html 4.01//en" "http://www.w3.org/tr/html4/strict.dtd"><html><head> <meta http-equiv="content-type" content="text/html; charset=gbk" /> <title>这个.. 页面没有找到!!!_sj5d.com</title> <style type="text/css"> body{ margin:0; padding:0; background:#efefef; font-family:georgia, times, verdana, geneva, arial, helvetica, sans-serif; } div#mother{ margin:0 auto; width:943px; height:572px; position:relative; } div#errorbox{ background: url(/404_bg.png) no-repeat top left;width:943px; height:572px;margin:auto;} div#errortext{ color:#39351e; padding:146px 0 0 446px } div#errortext p{ width:303px; font-size:14px; line-height:26px; } div.link{ /*background:#f90;*/ height:50px; width:145px; float:left; } div#home{ margin:20px 0 0 444px;} div#contact{ margin:20px 0 0 25px;} h1{ font-size:40px; margin-bottom:35px; } </style></head><body><div id="mother"> <div id="errorbox"> <div id="errortext"> <h1>sorry..页面没有找到!</h1> <p> 似乎你所寻找的网页已移动或丢失了。 <p>或者也许你只是键入错误了一些东西。</p> 请不要担心,这没事。如果该资源对你很重要,请与管理员联系。 </p> <p> 火星不太安全,我可以免费送你回地球 </p> </div> <a href="http://www.baidu.com" title="返回sj5d首页"> <div class="link" id="home"></div> </a> <a href="http://www.aliyun.com" title="联系管理员"> <div class="link" id="contact"></div> </a> </div></div></body></html>
,大量的免费yii入门教程,欢迎在线学习!
以上就是yii怎么返回404的详细内容。