Thinkphp5访问任何地址都只显示首页
2019-03-29 10:03:58

如果你的服务器是Apache,那么修改根目录下的 .htaccess


<IfModule mod_rewrite.c>

  Options +FollowSymlinks -Multiviews

  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d

  RewriteCond %{REQUEST_FILENAME} !-f

  RewriteRule ^(.*)$ index.php/?$1 [QSA,PT,L]  #注意这里多了?号 删除有惊喜

</IfModule>