1. 程式人生 > >TP5 無法獲取到GET引數(apache)

TP5 無法獲取到GET引數(apache)

這種情況很可能是和伺服器配置相關的。 例如本人的情況就是下載了一個新的專案,但是裡面的.htaccess檔案有問題導致無法獲取到get引數, 原來的是這樣:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
  RewriteEngine On

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

改過之後是:

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

然後就可以獲取到get引數了。 拿走不謝!