美文网首页php
thinkphp5之模块不存在、HttpException in

thinkphp5之模块不存在、HttpException in

作者: 左木北鱼 | 来源:发表于2019-03-26 14:16 被阅读0次

1.问题:

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

image.png

2.解决:

在.htaccess中添加

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

重点:Options +FollowSymlinks -Multiviews

相关文章

网友评论

    本文标题:thinkphp5之模块不存在、HttpException in

    本文链接:https://www.haomeiwen.com/subject/mtmgvqtx.html