我正在使用 Pelican 开发一些静态 HTML 网站,这些网站配置为提供漂亮的 URL,但是开发服务器不提供没有文件扩展名的页面。
/output/index.html -> should be accesible sith http://localhost:8000 (works)
/output/contact.html -> should be accesible sith http://localhost:8000/contact (doesn't work)
/output/products/index.html -> should be accesible sith http://localhost:8000/products (doesn't work)
在生产中,这是由 nginx 提供的,它配置正确,因此它确实为具有漂亮 URL 的文档提供服务。
问题是如何让 devenv 服务器做同样的事情?