服务多个目录不起作用

Serving multiple directories is not working

有没有办法使用 fasthttp 框架为多个目录提供服务?为了同样的目的,我写了下面的代码。但是,这段代码并没有像我预期的那样工作。当我访问 localhost:8080/path1 时,它会抛出错误和警告,

Cannot open requested path

2017/10/13 16:57:01 0.977 #0000000100000001 - 127.0.0.1:8080<->127.0.0.1:48870 - GET http://localhost:8080/path1 - cannot open file "/home/test/path1": open /home/test/path1/path1: no such file or directory

我不知道这个 url(/home/test/path1) 是如何重定向到 (/home/test/path1/path1) 的。以下代码有什么问题?

requestHandler := func(ctx *fasthttp.RequestCtx) {
        var fs fasthttp.FS
        switch string(ctx.Path()) {
        case "/path1":
            fs = fasthttp.FS{
                Root:       "/home/test/path1",
                IndexNames: []string{"index.html"},
            }
        case "/path2":
            fs = fasthttp.FS{
                Root:       "/home/test/path2",
                IndexNames: []string{"index.html"},
            }
        }
        fsHandler := fs.NewRequestHandler()
        fsHandler(ctx)
    }

    if err := fasthttp.ListenAndServe(":8080", requestHandler); err != nil {
        fmt.Println("error in ListenAndServe: %s", err)
    }

没有错,完全按照你写的方式工作: Web 服务器的根目录:/home/test/path1。您请求 http://bla/path1。这又转化为:http://bla/ -> /home/path/path1/index.htmlhttp://bla/path1 -> /home/path/path1/path1/index.html

哦,是的,如果提供 2 个目录 - 是的,你可以,就像任何其他普通 HTTP 服务器一样,它们只需要具有相同的 Root。否则查看虚拟主机支持。