将带有查询字符串的 URL 重定向到具有相同查询字符串的特定子域
这是目标: 重定向此: http://example.com/someDir/default.aspx?Some=query 到: http://sub.example.com/home/default.aspx?Some=query
这在 .htaccess 中可能吗?我可以在 WordPress 环境中执行此操作吗?
感谢您的帮助!
-雅各布
Here's the goal:
redirect this:
http://example.com/someDir/default.aspx?Some=query
to:
http://sub.example.com/home/default.aspx?Some=query
Is this at all possible in .htaccess? Can I do it in a WordPress environment?
Thanks for your help!
-Jacob
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的 - RedirectMatch 允许您使用捕获组:
Yes -- RedirectMatch lets you use capture groups: