Google应用引擎网站页面结构

时间:2013-04-25 21:12:35

标签: google-app-engine web

我使用谷歌应用程序引擎制作了一个网站但是,如果我想从主页面链接到文件夹结构中的不同页面,则不会在网站上加载。

链接很好,如果我直接从我的驱动器在浏览器上查看它们,它们就可以工作。我是否需要将整个文件夹放在某个单独的文件夹中以供应用引擎访问它,或者它是否需要在一个单一的杂乱文件中?

2 个答案:

答案 0 :(得分:1)

检查app.yaml文件,您必须编辑它并添加文件夹。 例如:

application: xxxx
version: 1
runtime: python
api_version: 1

handlers:

- url: /stylesheets
  static_dir: resources/stylesheets

- url: /imgs
  static_dir: resources/imgs

- url: /js
  static_dir: resources/js

- url: /html
  static_dir: resources/html
  mime_type: text/html

- url: /.*
  script: main.py

答案 1 :(得分:0)

假设您使用Java进行编码,则必须通过HTTP调用将您想要显示的所有文件直接放在WEB-INF文件夹中。