我一直在使用谷歌应用引擎来构建我的网站,并且遇到了关于 URLMap 最大数量的问题(我有 101 个 URL,但限制是 100)。这是错误消息:
Fatal error when loading application configuration:
Invalid object:
Found more than 100 URLMap entries in application configuration
in "\AppPest\app.yaml", line 269, column 28
我试图更改MAX_URL_MAPS = 1000
文件 appinfo.py 中的设置,但它不起作用。谁能给我一些建议?
编辑:
另一个问题是我的一些 URL 是相似的,比如 a_input.html、b_input.html、c_input.html。有没有办法简化它以减少 URL 的数量?这是我的 yaml 文件的示例
#a
- url: /a_input.html
script: a/a_input.py
#b
- url: /b_input.html
script: b/b_input.py
#c
- url: /c_input.html
script: c/c_input.py