tp3部署Apache No input file specified 解决方案

重写入口文件.htaccess文件
在index.php 后面加上?

<IfModule mod_rewrite.c>
AddType text/cache-manifest manifest 
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>

发布了33 篇原创文章 · 获赞 1 · 访问量 8319

猜你喜欢

转载自blog.csdn.net/u012914309/article/details/101273165