Connecting AppEngine Module to a custom DNS
问题 I've been having troubles trying to connect a module to my custom domain. I works perfectly on the appspot domain but not on my custom domain. E.G. http://m.myappname.appspot.com calls the dispatch.yaml file which routes the request to my mobile frontend BUT http://m.myappcustomdomain.com serves the default module (app.yaml) Any help will be highly appreciated. Thanks 回答1: You could an entry like this in your dispatch.yaml file: - url: "m.myappcustomdomain.com/*" module: your_mobile_module 来源