亚洲色蝴蝶中文娱乐网,在线亚洲欧美一区二区中文字幕,无人视频在线观看视频高清视频,99午夜国产精品一区二区,人人妻人人爽人人狠狠

No input file specified.的解決方法

時間:2016-11-05 11:32:25 類型:PHP
字號:    

使用APACHE+PHP配置, 當使用.htaccess文件時, 有時會遇到這種錯誤: No input file specified, 解決方法如下:

這里是源文件:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L] 

解決問題后的文件
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]

區(qū)別在于.htaccess文件的最后一行加了一個問號