haskell – Web Scotty:提供静态文件时找不到文件

前端之家收集整理的这篇文章主要介绍了haskell – Web Scotty:提供静态文件时找不到文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

504 Gateway Time-out

504 Gateway Time-out


Nginx/1.12.2


解决方法

If I type ‘/index.html’ at the browser – it works. But it is wrong! I want it to be accessible via ‘/’ but not ‘/index.html’.

但这正是070​​00中间件的用途!每当请求与策略匹配时(在本例中为./static/中的文件),它将被staticPolicy过滤.如果您不想要这种行为,请删除中间件.

Accessing via ‘/’ in the browser gives me the ‘file not found’ thing.

因为middlware操作未设置以下命令的相对路径.您需要提供file的完整路径:

main = scotty 3000 $do
  get "/" $file "./static/index.html"
原文链接:https://www.f2er.com/html/226086.html

猜你在找的HTML相关文章