Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following defined in my app.yaml:

handlers:
- url: /favicon.ico
  static_files: img/favicon.ico
  upload: noop

- url: /apple-touch-icon.png
  static_files: img/apple-touch-icon.png
  upload: noop

- url: /images
  static_dir: img

- url: /robots.txt
  static_files: media/robots.txt
  upload: noop

- url: /humans.txt
  static_files: media/humans.txt
  upload: noop

There are other mappings after the declaration for /humans.txt but I'll remove them for brevity.

The noop directory is an empty directory.

However my browser gives me a 404 when I try to access these urls:

  1. http://myapp.appspot.com/humans.txt
  2. http://myapp.appspot.com/robots.txt

Why ?

share|improve this question
have you had a look at the GAE log? – Dan Apr 10 '11 at 7:23
One of the errors read: Static file referenced by handler not found: media/humans.txt – Frankie Ribery Apr 10 '11 at 7:31

1 Answer

up vote 3 down vote accepted

Since you're using static files, upload should match the static_files location:

- url: /robots.txt
  static_files: media/robots.txt
  upload: media/robots.txt

- url: /humans.txt
  static_files: media/humans.txt
  upload: media/humans.txt
share|improve this answer
Yes. It works. But why does it work for favicon.ico ? – Frankie Ribery Apr 10 '11 at 8:21
It's required for that, too. Not sure why it'd work w/out. Caching? – hyperslug Apr 10 '11 at 8:39
i think you should a look here as well. stackoverflow.com/questions/887328/favicon-ico-not-found-error-in-app-engine – Abdul Kader Apr 10 '11 at 12:57
@Frankie It worked for favicon.ico because the /images handler had already included your favicon as a static file. – Nick Johnson Apr 11 '11 at 1:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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