1.【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?/$1 [QSA,PT,L]
</IfModule>
即index.php后增加一个?
参考链接:
https://blog.csdn.net/zhwxl_zyx/article/details/88336884