1. 程式人生 > >tp5.1 錯誤 No input file specified.

tp5.1 錯誤 No input file specified.

http://www.xxxx.com/admin/index/index

出現錯誤:No input file specified.

 

一、方法

與php版本有關  PHP版本5.6以上都會出現這個問題  把php版本改為5.5就OK

 

二、方法

.htaccess檔案中的

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]

在預設情況下會導致No input file specified.

修改成

RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

問題解決。

 

 

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>