thinkphp5之模块不存在、HttpException in App.php解决方案

thinkphp5之模块不存在、HttpException in App.php解决方案_第1张图片
找了好久,有说修改模块名的,有说改$this->fetch()的,都不行,所以下面才是正解:
在.htaccess中添加


 Options +FollowSymlinks -Multiviews
 RewriteEngine on
 RewriteBase /
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L]

重点:
Options +FollowSymlinks -Multiviews
参考文章:
https://blog.csdn.net/wanganji5252/article/details/81293082

你可能感兴趣的:(thinkphp5之模块不存在、HttpException in App.php解决方案)