thinkphp重定向隐藏index.php apache2.4设置

作者: 健隆 分类: php 发布时间: 2020-11-04 13:48
thinkphp重定向隐藏index.php apache2.4设置   出现 No input file specified 错误

出现这种情况一般是重写出现问题,我们检查一下Apache是否开启重启模块:

检查到Apache重写模块已经开启,那我们检查一下thinkphp中定义的重写规则:

打开.htaccess

在RewriteRule 后面的index.php教程后面添加一个“?”


  1.  
    <IfModule mod_rewrite.c>
  2.  
    Options +FollowSymlinks
  3.  
    RewriteEngine On
  4.  
     
  5.  
    RewriteCond %{REQUEST_FILENAME} !-d
  6.  
    RewriteCond %{REQUEST_FILENAME} !-f
  7.  
    RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
  8.  
    </IfModule>

就可以了

如果觉得我的文章对您有用,请随意打赏。您的支持将鼓励我继续创作!