使用 .htaccess 重定向并获取参数
有人可以帮助我吗?
我需要使用这样的获取参数重定向请求:
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
知道我该怎么做吗?
谢谢!
Can anybody help me?
I need to redirect request with get parameters like this:
http://www.mysite.com/listings/?tx_listingcontroller[countryId]=4&tx_listingcontroller[regionId]=2868&cHash=f59c2ae1b037df6fc8a1e2a55ea0ee96
to
http://www.mynewsite.com/listings/countryId/4/regionId/2868/cHash/f59c2ae1b037df6fc8a1e2a55ea0ee96
Anybody know how can I do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 RewriteRule 添加到 .htaccess 文件中。 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
You can add a RewriteRule to your .htaccess file. http://httpd.apache.org/docs/current/mod/mod_rewrite.html. This uses RegEx to parse the incoming URL and redirect to a new URL based on the matched segments. Something like...
RewriteRule ^listings/?tx_listingcontroller[countryId]=(.*)&tx_listingcontroller[regionId]=(.*)&cHash=(.*)$ listings/countryId/$1/regionId/$2/cHash/$3