关于tp框架除了首页其他都报500错误的解决方法

关于tp框架除了首页其他都报500错误的解决方法

Ezra
2021-11-02 / 0 评论 / 264 阅读 / 正在检测是否收录...

在根目录的.htacess里面修改为如下内容

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

评论 (0)

取消