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 という名前のファイルです。これは、WEB-INF/ ディレクトリの下のアプリの WAR にあります。

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 に答える