qkarimarowea
New Member
I am creating a website with asp.net that runs behind a reverse proxy. Now I have the following problem with redirecting:I would like to redirect just to another page in the same webapplication.\[code\]Response.Redirect("register.aspx");\[/code\]The client will be redirected to www.someurl.com/blabla/internalurl/blabla/register.aspx instead to www.someurl.com/register.aspx. When I do this, it works:\[code\]Response.Redirect("http://www.someurl.com/register.aspx");\[/code\]We have quite a few environments (testing ...), so the solution above is the last resort. Is there a better way?