A recent change to the way that sites display their offline page preserves the URL that the user requested in the title bar of the browser instead of redirecting to an error page. This is a great feature because you can simply use refresh or F5 to reload the page.
The way it works is to embed the site-specific offline page in an <iframe> that takes up the whole page. The only problem with this is that the site-specific offline page contains a link to the blog:

as a simple link:
<a href="http://blog.serverfault.com/">blog</a>
and this link is trapped in the <iframe>. If you follow the link and press F5, it will not refresh the blog, and if you bookmark the blog, it won't bookmark the right link.
<a href="http://blog.serverfault.com/" target="_parent">blog</a>– Mark Henderson Jul 7 '11 at 5:19