1

I'm a beginner on GAE and I was wondering if it was possible to add another page to it so the home page would be

"example.appspot.com"

and the second would be

"example.appspot.com/test"

I've already tried looking for something that helps but the answers aren't what I'm looking for.

4

1 回答 1

1

当然可以添加更多页面。定义 URL 匹配器的配置取决于您使用的语言运行时。

对于 Java:

部署描述符是一个名为 web.xml 的文件。它位于应用程序的 WAR 中的 WEB-INF/ 目录下。

https://developers.google.com/appengine/docs/java/config/webxml

对于 Python:

Python 应用在名为 app.yaml 的文件中指定运行时配置,包括版本和 URL

https://developers.google.com/appengine/docs/python/config/appconfig#Python_app_yaml_About_app_yaml

于 2013-08-09T19:46:24.100 回答