解决thinkphp启动时“No input file specified”的问题

解决thinkphp启动时“No input file specified”的问题

在学习thinkphp时,我们能够访问默认的index,但是新建的方法无法访问。

在网上查询相关资料得出,使用的PHP5.6是fast_cgi模式,而在某些情况下,不能正确识别path_info所造成的错误。

因此,我们要找到.htaccess文件,改成如下

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
    RewriteEngine On

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

就可以正常访问了

猜你喜欢

转载自blog.csdn.net/shgzzd/article/details/125497072
今日推荐