I get the following window after clicking this link in Firefox.

alt text

I press enter in the address bar again the page loads correctly in Firefox. I do the same in Safari the page does not load.

I have Google's toolbar in my Firefox. This suggests me that Google goes to look at its cache the article if it is not found immediately.

It seems that SO-family uses the same Google's cache, since the link in the comment shows the page correctly.

Why does I get the error message after clicking the first link?

link|improve this question

This is a link which SO seems to redirect first to Google's cache: : alexandrenotebook.blogspot.com/2008/01/… – Masi Jul 26 '09 at 13:08
Thank you for your answers! – Masi Jul 26 '09 at 19:38
feedback

2 Answers

up vote 2 down vote accepted

The page you were sent to was:

textile-vs-markdown-vs-multimarkdown-vs_10.html

But the URL was encoded like this:

textile-vs-markdown-vs-multimarkdown-vs%5F10.html

It's possible that either the server or browser was for some reason unable to decode the %5F seen in the link as an underscore and thus sending you to a page that didn't quite exist without properly decoding the link for the server to find. In this case, turning that %5F into _

After being shown that error, you'll note that the URL was shown in its correctly decoded state (the one with the underscore and not %5F).

When you hit enter in the location bar, the version of the URL with the underscore was asked for. Because it was already decoded to swap out for the underscore, was able to pull up the correct page as requested.

link|improve this answer
feedback

Works fine for me in FF3.5, Chrome, and even Internet Explorer.

link|improve this answer
Works for me in Chrome on Vista and FF3.5 on Fedora 11 – Dennis Williamson Jul 26 '09 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.