No input file specified的解决方法

使用TP框架做项目时,配置好域名访问时,首页可以访问,但是访问其它页面的时候,就提示:“No input file specified.”

原因

在于使用的PHP5.6fast_cgi模式,而在某些情况下,不能正确识别path_info所造成的错误。

    //默认的.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]
 	</IfModule>

解决

	//在正则表达式中index.php后面加一个?
	//匹配前面的子表达式零次或一次,或指明一个非贪婪限定符
  	RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]

你可能感兴趣的:(PHP)