0

当客户端请求进入根目录时,我在从子目录中提供某些文件时遇到了一些麻烦。

gorilla/mux用来提供文件。下面是我的代码:

package main

import (
    "log"
    "net/http"
    "time"

    "github.com/gorilla/mux"
    "github.com/zhughes3/zacharyhughes.com/configparser"
)

var config configparser.Configuration

func main() {
    config := configparser.GetConfiguration()
    r := mux.NewRouter()
    initFileServer(r)

    server := &http.Server{
        Handler:      r,
        Addr:         ":" + config.Server.Port,
        WriteTimeout: 15 * time.Second,
        ReadTimeout:  15 * time.Second,
    }

    log.Fatal(server.ListenAndServe())
}

func initFileServer(r *mux.Router) {
    fs := http.FileServer(http.Dir("public/"))
    r.PathPrefix("/public/").Handler(http.StripPrefix("/public/", fs))
}

创建文件系统的代码在上面的initFileServer函数中。

目前,它在用户访问时按预期提供静态文件localhost:3000/public/。但是,我希望在用户转到localhost:3000/.

我尝试将 ParsePrefix 函数调用更改为,r.PathPrefix("/").Handler(http.StripPrefix("/public/", fs))但它不起作用。任何建议将不胜感激......我对 Go 很陌生。

4

1 回答 1

1

您的文件服务器已经在 下提供文件/public,因此您不需要从 http 路径中去除前缀​​。这应该有效:

    r.PathPrefix("/").Handler(http.StripPrefix("/",fs))
于 2019-11-16T04:43:19.933 回答