In my project I have html file with non-Latin characters: Кондиционер.html. When i make request: www.myDomain.com/Кондиционер.html

Server sends 404 error:

Error: Not Found The requested URL /%D0%9A%D0%BE%D0%BD%D0%B4%D0%B8%D1%86%D0%B8%D0%BE%D0%BD%D0%B5%D1%80.html was not found on this server.

But with Latin latters everything works fine. What can I do to set GAE server to support such non-Latin file names?

link|improve this question
Is this a static file? – Wooble Feb 21 '11 at 17:47
And is this in production, or the SDK, or both? – Nick Johnson Feb 21 '11 at 23:31
Project is developed in Eclipse, GWT + embedded App engine SDK. I created html file in the WAR directory. I think it must be static by default: code.google.com/intl/en/appengine/docs/java/gettingstarted/… – Antoxa Feb 22 '11 at 1:18
feedback

1 Answer

Try this (does not work on the web-console, but in real *.py files):

print urllib.unquote("Ober%C3%B6sterreich.txt").decode("utf8")

For static files you need a redirecting request handler and an ascii-named file to which you redirect.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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