Ok, that's for the app.yaml.
What do I put in the handler.py?
Should...
application = webapp.WSGIApplication([('/app', AppHandler)])
be...
application = webapp.WSGIApplication([('/(?i)app', AppHandler)])
Thanks!
On Jan 24, 7:49 pm, djidjadji <[email protected]> wrote:
> - url: /(?i)app
> script: handler.py
>
> or
>
> - url: (?i)/app
> script: handler.py
>
> 2011/1/24 Albert <[email protected]>:
>
>
>
>
>
>
>
> > Hi!
>
> > In my app.yaml, I have the following handler:
>
> > - url: /app
> > script: handler.py
>
> > I also want /App and /ApP to resolve to my handler, and all other
> > uppercase and lowercase variations of "app" to work. Any ideas?
>
> > Thanks!
> > Albert
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.