1.如果访问项目时,返回如下内容:
No input file specified.
public目录下的.htaccess文件修改为如下内容
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)index.php [L,E=PATH_INFO:1]
</IfModule>.