After much hardship I finally got an SSL cert installed on my website. Now, I can add the
secure:always
line to app.yaml file, which will redirect all link to https. This works great, except that custom domains on GAE don't work under the url
https://jhallard.com
they have to have the www in front, like
https://www.jhallard.com
So right now, if a user goes to www.jhallard.com, they get forwarded to https://www.jhallard.com version and everything is great. If they go website.com, they get forwarded to https://jhallard.com and the page doesn't load. How do I (in python on GAE) forward all domain requests to the www version?