1. 程式人生 > >thinkPHP返回錯誤:無法載入模組Http

thinkPHP返回錯誤:無法載入模組Http

在高版本的php中,專案根目錄下的.htaccess檔案:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]//作用:在用地址訪問檔案時可以省略index.php
</IfModule>

而在版本相對較高的php中,需要將.htaccess檔案改為:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks
  RewriteEngine On

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