在用thinkphp的时候,当服务器是以fastcgi模式运行时,去掉index.php会出现No input file specified
错误(好久之前遇到过,当时不知道怎么解决。。。。)
今天再次遇到这个问题,把当前目录重写到下一级目录的时候,url里面有pathinfo参数的时候,也会报这个错误,
RewriteRule ^xxxx.html$ xyj/aaaa.php/a/b/c
改成这样
RewriteRule ^htmlmap.html$ xyj/aaaa.php [L,E=PATH_INFO:a/b/c]
就ok了