Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在尝试将曾经的静态页面变成动态页面。客户不想将 url 更改为在 url 末尾没有 .html。因此,作为示例,当前静态页面/foo/bar.html位于我的公用文件夹中,没问题。我可以很容易地做到/foo/bar,但是一旦我有一个时期的塔不再排除路线。
/foo/bar.html
/foo/bar
当前代码:map.connect('foo', '/foo/bar.html',controller=controller , action='foo')
map.connect('foo', '/foo/bar.html',controller=controller , action='foo')
我刚刚发现我需要做的就是添加 {.format} 并重命名原始文件,因为 pylons 会首先路由到静态页面!