因此,每当我尝试访问静态子目录中的任何文件时,我只得到404,Not Found,Accessing Home /另一方面工作得很好,但是我从主文件中调用的图片很简单破碎:(,所以我想知道要改变什么,以便我可以同时提供文件并重定向我的根目录。
我的路径结构:
root/
->html
->static
->entry.go
我在这里看到了其他线程,他们都建议我做r.PathPrefix(“/”)。处理程序(...),但这样做会让它访问静态以外的任何文件返回NIL,包括我的html在我的项目的根目录中的单独的html文件中的文件,此外,重定向到其中任何一个返回404,Not Found。
以下是代码:
package main
import (
"fmt"
"net/http"
"html/template"
"github.com/gorilla/mux"
"os"
)
func IfError(err error, quit bool) {
if err != nil {
fmt.Println(err.Error())
if(quit) {
os.Exit(1);
}
}
}
func NotFound(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(404)
t, _ := template.ParseFiles("html/404")
err := t.Execute(w, nil)
IfError(err, false)
}
func Home(w http.ResponseWriter, r *http.Request) {
t, _ := template.ParseFiles("html/home")
err := t.Execute(w, nil)
IfError(err, false)
}
func RedirectRoot(servefile http.Handler) http.Handler {
return http.HandlerFunc(func (w http.ResponseWriter, r *http.Request) {
if r.URL.Path == "/" {
redirect := r.URL.Host+"/home"
http.Redirect(w, r, redirect, http.StatusSeeOther)
} else {
servefile.ServeHTTP(w, r)
}
})
}
func main() {
r := mux.NewRouter()
ServeFiles := http.StripPrefix("/", http.FileServer(http.Dir("static/")))
r.Handle("/", RedirectRoot(ServeFiles))
r.HandleFunc("/home", Home)
r.NotFoundHandler = http.HandlerFunc(NotFound)
fmt.Printf("Listening ...")
IfError(http.ListenAndServe(":8081", r), true)
}
非常感谢
答案 0 :(得分:0)
我在您的代码中看到的问题
r.Handle("/", RedirectRoot(ServeFiles))
它会匹配每条路线,可能会产生意想不到的结果。而是清楚明确地映射您的路线,然后它将按预期工作。
例如:让我们用责任映射处理程序。这种方法基于您的目录结构。
它只会通过文件服务器公开static
目录,其余文件和根目录是安全的。
func main() {
r := mux.NewRouter()
r.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
r.HandleFunc("/home", Home)
r.NotFoundHandler = http.HandlerFunc(NotFound)
fmt.Printf("Listening ...")
IfError(http.ListenAndServe(":8081", r), true)
}
RedirectRoot
可能不需要用于您的目的。
现在,/static/*
和http.FileServer
由/home
处理Home
。
修改强>
正如评论中所述。要将根/
映射到归属处理程序和/favicon.ico
,请在上面的代码段中添加以下内容。
func favIcon(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/favicon.ico")
}
r.HandleFunc("/favicon.ico", favIcon)
r.HandleFunc("/", Home)
favicon.ico
来自static
目录。