Consider this scenario:
a browser requests for a website and sends a request to a server (let's call it A). A responds with a 307 redirect with some content on server B as the location. Now the browser sends a request to server B to get this content.
A few mts later, the user refreshes the page.
what happens now? From a test I did on Chrome, it looks like, on refresh, we are fetching the local content from the browser cache and not contacting server A or server B.
Wanted to know if this is common behavior across all browsers. Is there a possibility that a browser may, on refresh, instead of contacting server A or its local cache, send a request to server B instead?
please let me know...thanks in advance!!