tp5 重定向缺少index.php报错(No input file specified)

it2022-05-05  144

转别人的,有用,Mark一下

public 下的.htaccess 修改为

<IfModule mod_rewrite.c>  Options +FollowSymlinks -Multiviews  RewriteEngine On  RewriteCond %{REQUEST_FILENAME} !-d  RewriteCond %{REQUEST_FILENAME} !-f  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]        //此行去掉换成下面这一句  RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]    //写上这一句</IfModule>

转载于:https://www.cnblogs.com/zaoa/p/9441832.html


最新回复(0)