如何访问 web2py 项目中的 html 静态站点

How to visit html static site inside web2py project

说我有一些设计师给我的 comp html 文件,我想立即在 127.0.0.1 上的 web2py 网站 运行 中使用它,使用 web2py MVC 结构,如何我能做到吗?

web2py 提供应用程序 /static 文件夹中的静态文件,因此只需将文件放在那里。如果你需要生成指向它们的链接,你可以使用 URL 帮助器:URL('static', 'path/to/static_file.html')(其中第二个参数表示路径 within the /static文件夹)。