Question

My web.config is currently set up like so:

<customErrors mode="RemoteOnly" defaultRedirect="500.aspx" redirectMode="ResponseRewrite">
      <error statusCode="404" redirect="404.aspx" />
      <error statusCode="403" redirect="403.aspx" />
</customErrors>

Is there any way to figure out from what url a user got redirected to the 403 from?

Was it helpful?
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top