IIS 7 URL 重写模块:自定义响应和发布数据
我需要创建一条规则,将 URL 重写为代码 301 的新 URL,同时引入代码 200(HTTP OK)的自定义响应,同时重定向 POST 提交的数据。我用两条规则做到了这一点,但是提交的数据在重定向过程中丢失了。
I need to create a rule that rewrites an URL to a new one with code 301 and at the same time brings a Custom Response with code 200 (HTTP OK) also redirecting the data submitted by POST. I did this with two rules, however the data submitted is lost along the way during the redirection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过使用 307 重定向(临时重定向)解决了这个问题,与其他重定向不同,它不会将 post 请求转换为 get。
谢谢你!
I solved it by using the 307 redirection (Temporary redirection), which unlike the other redirections, doesn't convert the post request to get.
Thank you!