运行的时候出现错误:No input file specified

.htaccess出错

一开始的.htaccess文件内容是

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
修改成
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

结论:少了index.php后面的问号

猜你喜欢

转载自blog.csdn.net/weixin_41728561/article/details/80964019