解决ThinkPHP除去链接中的index.php

来源:互联网 发布:优秀的java开源项目 编辑:程序博客网 时间:2024/05/16 18:54

No input file specified.

当出现这个错误的时候不要着急 

只需要按我的步骤走就可以


更改根目录下的.htaccess文件就好了

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>

0 0