蓝香川的个人博客

小蓝博客
偶尔随便写点东西

TP6中的No input file specified/not found The requested URL was not found on this server

phpenv

apache配置

php7.3中,使用tp6,index.php去不掉,报: No input file specified这个问题。这是因为路由的问题

1.打开public/.htaccess文件;

2.将最后一行的代码改成这样:

<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>

注意,index.php后面,需要增加一个问号,否则不生效。

.

本文未经允许不得转载 | 当前页面:蓝香川的个人博客 » TP6中的No input file specified/not found The requested URL was not found on this server