When using the dev server this url [localhost:8888/drive] gets automaticaly redirected to [localhost:8888/drive/]. The trailing slash is added so that the default index.html will be served.
But once I uploaded to App Engine it no longer works. The automatic redirection is not happening. artcowles.appspot.com/drive is not automatically being redirected to artcowles.appspot.com/drive/
One last bit of info: "drive" is a static folder in the WAR directory.
Why is the dev server performing different than production?
Is there some configuration I can set in my web.xml or appengine-web.xml that will mimic the dev server behaviour?
Or do I just need to add my own redirect?
Thanx