看一下下面这段代码:
package main
import (
"net/http"
)
func main() {
// 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"))))
}
(1)http.Dir("/tmp")
是利用本地tmp
目录实现一个文件系统;
(2)http.FileServer(http.Dir("/tmp"))
返回一个Handler
,其用来处理访问本地"/tmp"
文件夹的HTTP
请求;
(3)http.StripPrefix("/tmpfiles/", http.FileServer(http.Dir("/tmp")))
返回一个新的Handler
,这个Handler
用来处理HTTP
请求(移除前缀是"/tmpfiles/"
后的URL
)。
总结一下,当要访问http://localhost/tmpfiles/a
文件,实际访问的是本地/tmp/a
文件。