在入口文件同级的 .htaccess 文件中的
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
在默认情况下可能会导致访问页面报:No input file specified.
将上面一句修改为:
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
后刷新页面就可以正常访问了
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/17591.html