2011-01-14 46 views
0

當前URL如何獲得下一個參數在我的.htaccess

http://domain.com/page/2/ 

的.htaccess

RewriteRule ^page/([0-9]+)/$ /index.php?p=$1 [L] 

下一頁URL

http://domain.com/page/2/?by=1 

如何獲得by=1

因爲當我print_r($_GET)這只是顯示Array ([p] => 2)

我應該我在寫.htacces得到[by] => 1

回答

0

更改線條從[L][QSA,L]年底保留查詢字符串。

+0

我得到錯誤500 – wow 2011-01-14 04:08:30

相關問題