在入口文件添加 APP_DEBUG开启调试模式后,无法加载模块
原因:开启调试模式,区分大小写的,要把模块名首字母大写就OK了。也就是:
1 | http: //localhost/php/fanhuar/index/index.php/index/ |
修改为:
1 | http: //localhost/php/fanhuar/index/index.php/Index/ |
在入口文件添加 APP_DEBUG开启调试模式后,无法加载模块
原因:开启调试模式,区分大小写的,要把模块名首字母大写就OK了。也就是:
1 | http: //localhost/php/fanhuar/index/index.php/index/ |
修改为:
1 | http: //localhost/php/fanhuar/index/index.php/Index/ |
转载于:https://my.oschina.net/u/3609202/blog/2961531