为什么我需要使用 http.StripPrefix 来访问我的静态文件?

Why do I need to use http.StripPrefix to access my static files?

main.go

package main

import (
    "net/http"
)

func main() {
    http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
    http.ListenAndServe(":8080", nil)
}

目录结构:

%GOPATH%/src/project_name/main.go
%GOPATH%/src/project_name/static/..files and folders ..

即使在阅读了文档之后,我仍然无法理解 http.StripPrefix 在这里究竟做了什么。

1) 如果删除 http.StripPrefix,为什么我无法访问 localhost:8080/static

2) 如果我删除该功能,URL 映射到 /static 文件夹的内容是什么?

http.StripPrefix() 将请求的处理转发给您指定为其参数的请求,但在此之前它会通过删除指定的前缀来修改请求 URL。

因此,例如在您的情况下,如果浏览器(或 HTTP 客户端)请求资源:

/static/example.txt

StripPrefix 将剪切 /static/ 并将修改后的请求转发给 http.FileServer() 返回的处理程序,因此它将看到请求的资源是

/example.txt

http.FileServer() 返回的 Handler 将查找 相对 文件的内容并将其提供给文件夹(或者 FileSystem ) 指定为其参数(您将 "static" 指定为静态文件的根目录)。

现在由于 "example.txt"static 文件夹中,您必须指定相对路径才能获得正确的文件路径。

另一个例子

此示例可在 http 包文档页面 (here) 上找到:

// To serve a directory on disk (/tmp) under an alternate URL
// path (/tmpfiles/), use StripPrefix to modify the request
// URL's path before the FileServer sees it:
http.Handle("/tmpfiles/",
        http.StripPrefix("/tmpfiles/", http.FileServer(http.Dir("/tmp"))))

解释:

FileServer() 被告知静态文件的根是 "/tmp"。我们希望 URL 以 "/tmpfiles/" 开头。所以如果有人请求"/tempfiles/example.txt",我们希望服务器发送文件"/tmp/example.txt".

为了实现这一点,我们必须从 URL 中删除 "/tmpfiles",剩下的将是相对于根文件夹 "/tmp" 的相对路径,如果我们加入给出:

/tmp/example.txt

我会一一回答这两个问题

问题 1 的答案 1: 如果你的代码是这样写的:

http.Handle("/static/", http.FileServer(http.Dir("static"))

您的根文件夹是 %GOPATH%/src/project_name/static/。当您访问 localhost:8080/static 时,URL /static 将被转发到 http.FileServer() 返回的处理程序。但是,根文件夹中没有名为 static 的目录或文件。

问题 2 的答案 2:一般情况下,如果删除 http.StripPrefix(),您将无法访问 /static 文件夹。但是,如果您有一个名为 static 的目录或文件,您可以使用 URL localhost:8080:/static.

顺便说一句,如果您的 URL 不是以 /static 开头,您将无法访问任何内容,因为 http.ServeMux 不会重定向您的请求。

假设

我有一个文件

/home/go/src/js/kor.js

然后,告诉 fileserve 服务于本地目录

fs := http.FileServer(http.Dir("/home/go/src/js"))

示例 1 - root url 到 Filerserver root

现在文件服务器接受 "/" 请求作为 "/home/go/src/js"+"/"

http.Handle("/", fs)

是的,http://localhost/kor.js 请求告诉 Fileserver,在

中找到 kor.js
"/home/go/src/js" +  "/"  + "kor.js".

我们得到了 kor.js 个文件。

示例 2 - 自定义 url 到文件服务器根目录

但是,如果我们添加额外的请求名称。

http.Handle("/static/", fs)

现在文件服务器接受 "/static/" 请求作为 "/home/go/src/js"+"/static/"

是的,http://localhost/static/kor.js 请求告诉 Fileserver,在

中找到 kor.js
"/home/go/src/js" +  "/static/"  + "kor.js".

我们收到 404 错误。

示例 3 - 使用

自定义 url 到文件服务器根目录

因此,我们在 Fileserver 使用 http.StripPrefix("/tmpfiles/", ...

接收请求之前修改请求 url

stripPrefix 之后,文件服务器采用 / 而不是 /static/

"/home/go/src/js" +  "/"  + "kor.js".

得到kor.js

对于任何有子目录问题的人,您需要添加一个 "." 因为它似乎仅当它是二进制文件根目录中的文件夹时才将路径视为相对路径。

例如

s.router.PathPrefix("/logos/").Handler(
        http.StripPrefix("/logos/", http.FileServer(http.Dir("./uploads/logos/"))))

注意“/uploads”之前的"."