1. 程式人生 > >tp5 重定向缺少index.php報錯(No input file specified)

tp5 重定向缺少index.php報錯(No input file specified)

轉別人的,有用,Mark一下

public 下的.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]        //此行去掉換成下面這一句
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]    //寫上這一句
</IfModule>