1.问题:
image.pngthinkphp5之模块不存在、HttpException in App.php解决方案
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
网友评论