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 <djidja...@gmail.com> wrote:
> - url: /(?i)app
>  script: handler.py
>
> or
>
> - url: (?i)/app
>  script: handler.py
>
> 2011/1/24 Albert <albertpa...@gmail.com>:
>
>
>
>
>
>
>
> > 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 google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to