-
Hi I am attempting to transform the location response header after following the "Direct Forwarding" example, with the following code: I can see from debugging that I am setting the new location here as expected. However, a fiddler trace of the e2e proxied request still has the original location on the response header. Can someone provide guidance of where I am going wrong? |
Beta Was this translation helpful? Give feedback.
Answered by
Tratcher
Oct 25, 2022
Replies: 1 comment 2 replies
-
The headers have already been copied to HttpContext.Response.Headers, you need to modify the Location there. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
dolenox
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The headers have already been copied to HttpContext.Response.Headers, you need to modify the Location there.