用.htaccess重定向并获取参数

时间:2011-11-09 12:54:50

标签: apache .htaccess

有人能帮助我吗?

我需要使用get参数重定向请求:

http://www.mysite.com/listings/?tx_listingcontroller[countryId]=4&tx_listingcontroller[regionId]=2868&cHash=f59c2ae1b037df6fc8a1e2a55ea0ee96

http://www.mynewsite.com/listings/countryId/4/regionId/2868/cHash/f59c2ae1b037df6fc8a1e2a55ea0ee96

有人知道我该怎么做?

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以在.htaccess文件中添加RewriteRule。 http://httpd.apache.org/docs/current/mod/mod_rewrite.html。这使用RegEx来解析传入的URL并根据匹配的段重定向到新的URL。有点像...

RewriteRule ^listings/?tx_listingcontroller[countryId]=(.*)&tx_listingcontroller[regionId]=(.*)&cHash=(.*)$ listings/countryId/$1/regionId/$2/cHash/$3