Hi all,
I just want to ask a simple question, as I don't imagine how to do it.
In the app.yaml, when I want to declare query string parameter, how do I do it?
For example, to make a multi language site, I create the url in this format:
mysite.com/english/aboutus
mysite.com/italiano/aboutus
and in app.yaml the script to handle them are
- url: /english/aboutus
script: index.py
- url: /italiano/aboutus
script: index.py
In which way can I determine the difference between these two urls, and how to handle them in index.py?
I know this is simple question, I could look around for references, but it might help for others in stackoverflow.com as well.