使用 .htaccess 重定向并获取参数

发布于 2024-12-14 11:36:32 字数 384 浏览 0 评论 0原文

有人可以帮助我吗?

我需要使用这样的获取参数重定向请求:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

永言不败 2024-12-21 11:36:32

您可以将 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文