Stop firebug from re-requesting html source
1 answer
Is your server-side code sending HTTP cache headers? If not, you can try adding them. If this is the case and you are still seeing this issue, you can try installing a web cache proxy on your development machine and configure firefox to connect through it.
If you cannot change the server side code to add cache control headers, you can write a proxy that forwards requests to your server and adds headers to the responses it returns.
+1
a source to share