我有人让 appengine 模块工作。我有两个模块,app和auth。我有一个自定义域说domain.com,我想将app.domain.com路由到 app 模块,并将auth.domain.com 路由到 auth 模块,以下是我的 dispatch.xml 文件,
<dispatch>
<!-- Default module serves simple hostname request. -->
<url>*/favicon.ico</url>
<module>default</module>
</dispatch>
<dispatch>
<!-- Auth Service to auth module -->
<url>auth./*</url>
<module>auth</module>
</dispatch>
<dispatch>
<!-- Default module serves simple hostname request. -->
<url>*/favicon.ico</url>
<module>default</module>
</dispatch>
由于 app 模块是默认 app.domain.com 已成功路由,但我无法将 auth.domain.com 路由到 auth 模块,它始终指向默认模块,
如何将自定义域路由到服务器特定模块?
谢谢