Firefox 5 'caching' 301 redirects

后端 未结 9 598
时光取名叫无心
时光取名叫无心 2020-12-02 07:09

Is there any way to disable this \'feature\'?

For example, if a request is made to http://localhost/foo.html that I have specified to \'301\' to the roo

相关标签:
9条回答
  • 2020-12-02 07:35

    I just experienced this problem, and for me it was two issues.

    This particular domain name is routed through Cloudflare, so I had to set it to development mode. I think Cloudflare was caching the 301 redirect so it didn't have to send the request to the server. This step might not apply to you obviously.

    Then, I simply cleared my Firefox cache (version 11) by going to Tools -> Options, clicking the Advanced button at the upper right, selecting the Network tab, and then clicking Clear Now under the section Cached Web Content. Note my cache was already set to 0, but I still needed to click the Clear Now button to get the redirect to stop being cached.

    I'd be interested to know if anyone else can verify this.

    0 讨论(0)
  • 2020-12-02 07:35

    I have found a solution for this that works on Firefox 26, after having an obsolete redirect cached for over a month and a restart.

    1. On the History menu, choose Show All History.
    2. In the search, type in the domain with the cached redirect issue to bring up a list of results.
    3. Right-click on one of them and choose "Forget about this site".

    All cached pages, images and redirects for only that site will be removed from the cache. This lets you clear the redirect for your development website without clearing the rest of your cache.

    As a side note, I think Firefox should only cache redirects for a few days at most. Caching them for over a month can make a simple mistake a big problem.

    0 讨论(0)
  • 2020-12-02 07:36

    301 is just a normal cacheable response code. http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.2 says:

    This response is cacheable unless indicated otherwise. 
    

    So if you don't want it cached, your server needs to indicate otherwise through the normal headers used to control cache behavior.

    You can also clear the cache manually.

    0 讨论(0)
  • 2020-12-02 07:38

    In Firefox if you have the "web developer" tool bar addon. You can click disable -> disable cache -> check for new version of page every time. Then reload the URL and it will refresh your cache. So you don't need to clear your full cache.

    From cptstubing06's comment, the following can help clear the cache:

    1. Type Ctrl+l to put the cursor on the location bar.
    2. Type about:config to open the configuration settings.
    3. Confirm any warnings.
    4. Type browser.cache followed by Enter to filter the settings.
    5. Double-click browser.cache.check_doc_frequency.
    6. Change the value from 3 to 1.
    7. Click OK.
    8. Revisit the obsessively cached 301 page.
    9. Reset the frequency back to 3 when finished.

    Firefox should now redirect to the new 301 page, no longer fetching the redirected page from cache.

    0 讨论(0)
  • 2020-12-02 07:38

    301 means Moved Permanently and is cachable, so I think that's the "right" behavior for the browser. You should use 303 See Other.

    0 讨论(0)
  • 2020-12-02 07:43

    A 301 indicates moved permanently. Therefore I see it to be reasonable to cache the response.

    Have you tried setting the cache-control and expires headers?

    http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9

    0 讨论(0)
提交回复
热议问题