使用.htaccess时如何获得$ _GET ['id']?

时间:2011-08-28 13:39:31

标签: php .htaccess get

它应该只是id号码,但它现在有profile/前缀,这打破了一切。

这是我使用的规则:

RewriteCond %{REQUEST_URI} /v0\.3/profile/
RewriteRule ^(.+)$ /v0.3/profile.php?id=$1 [QSA,L]

1 个答案:

答案 0 :(得分:2)

将RewriteRule更改为:

RewriteRule profile/(.+)$ /v0.3/profile.php?id=$1 [QSA,L]