tp5 重定向缺少index.php报错(No input fi
2017-10-28 本文已影响198人
听城
入口文件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]
</IfModule>