直接输入localhost可正常访问,输入localhost/index/index/index报错No input file specified.
需要设置你的站点伪静态,打开public-.htaccess
把:RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
改成:RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
就可以了
你看看你域名的入口文件是不是public下index.php