今天在php中使用Thinkphp5框架的时候,遇到个问题留作纪念,在模块中使用了除Index控制器的其他控制器访问时出现:No input file specified
查询后解决办法是打开public目录下的.htaccess文件,把:RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
改为:RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
博客列表 >Thinkphp中出现 No input file specified
今天在php中使用Thinkphp5框架的时候,遇到个问题留作纪念,在模块中使用了除Index控制器的其他控制器访问时出现:No input file specified
查询后解决办法是打开public目录下的.htaccess文件,把:RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
改为:RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]