I just moved a couple of static websites onto Google's App Engine, where, if you want to use your own domain, a www subdomain is required. Both domains are routing correctly, with the exception that one's full url path doesn't get passed on to the subdomain unless a www is typed or present in the link; without www, pages redirect home.
The working site—either link will work:
http://www.synth.tk/daw/
http://synth.tk/daw/
The problem site—only the first link will work; the second redirects to the homepage:
http://www.carolyncaton.com/photos/
http://carolyncaton.com/photos/
Both domains are set up with FreeDNS using the following host records as per Google's instructions:
@ | A | 216.239.32.21
@ | A | 216.239.34.21
@ | A | 216.239.36.21
@ | A | 216.239.38.21
www | CNAME | ghs.google.com
And both are using the following app.yaml file:
application: app-name-here
version: 1
runtime: python
api_version: 1
default_expiration: "30d"
handlers:
- url: /(.*\.css)
mime_type: text/css
static_files: static/\1
upload: static/(.*\.css)
- url: /(.*\.html)
mime_type: text/html
static_files: static/\1
upload: static/(.*\.html)
expiration: "1h"
- url: /(.*\.js)
mime_type: text/javascript
static_files: static/\1
upload: static/(.*\.js)
- url: /(.*\.eot)
mime_type: application/vnd.ms-fontobject
static_files: static/\1
upload: static/(.*\.eot)
- url: /(.*\.(svg|svgz))
mime_type: images/svg+xml
static_files: static/\1
upload: static/(.*\.(svg|svgz))
- url: /(.*\.ttf)
mime_type: font/truetype
static_files: static/\1
upload: static/(.*\.ttf)
- url: /(.*\.woff)
mime_type: application/x-font-woff
static_files: static/\1
upload: static/(.*\.woff)
- url: /(.*\.pdf)
mime_type: application/pdf
static_files: static/\1
upload: static/(.*\.pdf)
# image files
- url: /(.*\.(bmp|gif|ico|jpeg|jpg|png))
static_files: static/\1
upload: static/(.*\.(bmp|gif|ico|jpeg|jpg|png))
# index files
- url: /(.+)/
static_files: static/\1/index.html
upload: static/(.+)/index.html
expiration: "15m"
- url: /(.+)
static_files: static/\1/index.html
upload: static/(.+)/index.html
expiration: "15m"
# site root
- url: /
static_files: static/index.html
upload: static/index.html
expiration: "15m"