如何在app.yaml中声明欢迎文件(例如index.html)

如何在app.yaml中声明欢迎文件(例如index.html),第1张

概述在 Java中,web.xml可能包含一些< welcome-file>元素.我试图在python中做一些相同的事情而没有运气. application: wkversion: 1runtime: pythonapi_version: 1handlers:- url: / static_dir: docswelcome_files:- index.html 有什么想法吗?我收 在 Java中,web.xml可能包含一些< welcome-file>元素.我试图在python中做一些相同的事情而没有运气.

application: wkversion: 1runtime: pythonAPI_version: 1handlers:- url: /  static_dir: docswelcome_files:- index.HTML

有什么想法吗?我收到一条错误,“welcome_files”未被理解.

解决方法 一种可能性:

application: wkversion: 1runtime: pythonAPI_version: 1handlers:- url: /  static_files: static/index.HTML  upload: static/index.HTML- url: /.*  static_files: static  upload: static
总结

以上是内存溢出为你收集整理的如何在app.yaml中声明欢迎文件(例如index.html)全部内容,希望文章能够帮你解决如何在app.yaml中声明欢迎文件(例如index.html)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1080964.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存