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.

If i have a url like this www.myurl.com/test@test.com I would like to get the index.html if I dont have the mail I want the same.

application: myapp
version: 1
runtime: python
api_version: 1

handlers:
- url: /AJAX
  script: main.py




- url: /
  static_files: static_files/index.html
  upload: static_files


- url: /
  static_dir: static_files

- url: /*
  static_files: static_files/index.html
  upload: static_files
share|improve this question

1 Answer

up vote 3 down vote accepted

If you change the last section in the handler group to

- url: /.*
  static_files: static_files/index.html
  upload: static_files

it should match any URL.

share|improve this answer

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.