Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/google-app-engine/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google app engine 应用程序引擎-指向子域的自定义域_Google App Engine_Dns_Subdomain - Fatal编程技术网

Google app engine 应用程序引擎-指向子域的自定义域

Google app engine 应用程序引擎-指向子域的自定义域,google-app-engine,dns,subdomain,Google App Engine,Dns,Subdomain,我听说现在我们可以在GoogleAppEngine上使用通配符子域(我自己还没有尝试过,但我相信这是一个新增的功能),但是我们可以有一个域点吗 所以 new.example.com(有效吗?) newexample.com->new.example.com(这有效吗?newexample.com充当new.example.com的位置) 按照我对newexample.com的设想,这将像 url中的newexample.com/blog,但app engine将支持它作为new.example.

我听说现在我们可以在GoogleAppEngine上使用通配符子域(我自己还没有尝试过,但我相信这是一个新增的功能),但是我们可以有一个域点吗

所以

new.example.com(有效吗?)

newexample.com->new.example.com(这有效吗?newexample.com充当new.example.com的位置)

按照我对newexample.com的设想,这将像

url中的newexample.com/blog,但app engine将支持它作为new.example.com/blog

我想我想强调的是,我不是在寻找域名转发,因为newexample.com只是将用户转发到new.example.com

谢谢

更新:澄清一下,我不是指裸体域名,而是像这样的url

www.newexample.com/blog可以作为new.example.com/blog工作,或者更清楚地说,如果问题是: “裸”域名,如newexample.com(即之前没有
www.
)可以由谷歌应用程序引擎提供服务吗

那么答案是


通配符子域允许用户输入的任何子域(例如myphotos.example.com、yourphotos.example.com等)由Google App Engine提供服务,而无需单独设置每个子域。尽管它确实需要支持通配符的DNS提供商。

是的,在谷歌应用程序中设置自定义域时,您只需使用asterix
*.example.com

要在给定的高级子域中的所有子域上提供应用程序,您可以使用通配符子域映射:输入星号代替最低级别的名称。例如,输入*将导致在注册域内的所有子域上提供应用程序

*.yourappid.appspot.com域默认工作

可以将您的应用添加到尽可能多的不同Google Apps帐户中(因此可以使用多个域),但您不能在Google Apps中使用域别名,因为只使用Google Apps帐户中的主域

使用Google App Engine的应用程序不适用于非主域的用户


参见

我澄清了我的问题,但这不是我要问的。不管怎样,谢谢这个问题仍然很令人困惑。