0

在主页 index.htm 页面上有一个指向 signUp.htm 页面的链接,该链接不起作用。

我相信这是一个 YAML 问题:

handlers:
- url: /images
  static_dir: images

- url: /.*
  script: index.htm
4

1 回答 1

1

为 html 文件添加静态处理程序。把它放在你的全部处理程序之前。*

- url: /(.*\.(htm$|html$))
  static_files: \1
  upload: (.*\.(htm$|html$))
于 2013-10-09T20:11:19.833 回答