有人能帮助我吗?
我需要使用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
有人知道我该怎么做?
谢谢!
答案 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