You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When web requests receive a redirect response (301, 302, etc), either to another domain or another endpoint, the endpoint should be cached for future use. In other words:
Hash map stores https://mydomain.com/path/to/content --> https://someotherplace.com because that is the known permanent redirect. Anytime a user requests https://mydomain.com, NGN.NET should instead request https://someotherplace.com, which will reduce the route by a single hop.
Typically, the browser will prevent itself from making too many redirected requests.
Does the browser auto-resolve domain redirects? Is this functionality even necessary?
The text was updated successfully, but these errors were encountered:
When web requests receive a redirect response (301, 302, etc), either to another domain or another endpoint, the endpoint should be cached for future use. In other words:
https://mydomain.com/path/to/content --> https://someotherplace.com
because that is the known permanent redirect. Anytime a user requestshttps://mydomain.com
, NGN.NET should instead requesthttps://someotherplace.com
, which will reduce the route by a single hop.Typically, the browser will prevent itself from making too many redirected requests.
Does the browser auto-resolve domain redirects? Is this functionality even necessary?
The text was updated successfully, but these errors were encountered: