当客户端请求进入根目录时,我在从子目录中提供某些文件时遇到了一些麻烦。
我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 很陌生。