thinkphp rewrite .htaccess按官方文档写或者使用默认的提示No input file specified解决方案

thinkphp框架进行rewrite配置.htaccess文件时按官方文档写或者使用默认的提示No input file specified解决方案


解决方案:

在你的入口文件同级目录找到.htaccess文件并打开,将下面的的代码

RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
改为

RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]


原因:请参考我这篇博文!

http://blog.csdn.net/df981011512/article/details/61206046



发布了74 篇原创文章 · 获赞 125 · 访问量 48万+

猜你喜欢

转载自blog.csdn.net/df981011512/article/details/78417832