在线一区二区三区高清视频,国产精品妇女一二三区,美女被遭强高潮网站在线播放,实拍各种胸走光见奶头

No input file specified.的解決方法

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

使用APACHE+PHP配置, 當(dāng)使用.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文件的最后一行加了一個問號