thinkphp5 phpstudy 显示 No input file specified 解决办法
这是由于运行模式导致的
修改入口处的配置
<IfModule mod_rewrite.c>
    Options +FollowSymlinks -Multiviews
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    #apacheHanlder模式
    #RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
    #fastCGI模式
    RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>
					最后更新于 2017-04-02 14:38:48 并被添加「thinkphp5 解决办法 phpstudy 显示 No input file specified」标签,已有 1400 位童鞋阅读过。
此处评论已关闭