YII2 框架访问gii页面404的错误处理记录

常见错误通过 Baidu 或 Google 可以找到,通常是安装、基本配置问题。

今天在本地使用GII的过程中,遇到的404问题,根据网上的解决方案,都没能够解决,通过debug,发现问题出在了UrlManager的配置上。

根据网上的教程,GII安装好以后,通过链接 “http://localhost/app/gii” 即可直接访问。但是在本机测试无论如何也是返回404,反复修改配置文件,也没能解决这个问题。

通过调试代码最终发现问题出在了下面的配置上

urlManager配置了后缀为’.html’,在使用链接 “http://localhost/app/gii” 访问时,由于没有后缀,YII框架在解析URL时,就直接返回404了,所以在配置了’suffix’属性的时候,需要使用链接 “http://localhost/app/gii.html” ,或者不配置’suffix’属性即可。

Leave a Reply

邮箱地址不会被公开。 必填项已用*标注

You may use these HTML tags and attributes:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">