I have an app engine website up, and I'm trying to require https and redirect all traffic to https. However, the only traffic that gets redirected to https is the domain www.hotplate.com, and not anything else, even variations such as hotplate.com, www.hotplate.com/deck, etc. I am able to access the https of these urls manually though. Below is my app.yaml. I checked to make sure there are SSL Certificates and there seems to be. Any help is much appreciated. Thank you.
runtime: nodejs env: flex
handlers: - url: .* secure: always redirect_http_response_code: 301 script: auto
automatic_scaling: min_num_instances: 1 cpu_utilization: target_utilization: 0.9
resources: cpu: .1 memory_gb: 0.9 disk_size_gb: 10