天天看点

thinkphp 的No input file specified错误

除了默认主页,打开所有的页面打开所有的页面都出现这个:No input file specified.

配置.htaccess

<IfModule mod_rewrite.c>  

  Options +FollowSymlinks -Multiviews  

  RewriteEngine On  

  RewriteCond %{REQUEST_FILENAME} !-d  

  RewriteCond %{REQUEST_FILENAME} !-f  

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

</IfModule>

继续阅读