• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    在go文件服务器加入http.StripPrefix的用途介绍

    例子:

    http.Handle("/tmpfiles/", http.StripPrefix("/tmpfiles/", http.FileServer(http.Dir("/tmp"))))

    当访问localhost:xxxx/tmpfiles时,会路由到fileserver进行处理

    当访问URL为/tmpfiles/example.txt时,fileserver会将/tmp与URL进行拼接,得到/tmp/tmpfiles/example.txt,而实际上example.txt的地址是/tmp/example.txt,因此这样将访问不到相应的文件,返回404 NOT FOUND。

    因此解决方案就是把URL中的/tmpfiles/去掉,而http.StripPrefix做的就是这个。

    补充:go语言实现一个简单的文件服务器 http.FileServer

    代码如下:

    package main
    import (
     "flag"
     "fmt"
     "github.com/julienschmidt/httprouter"
     "log"
     "net/http"
     "strings"
     "time"
    )
    func main() {
     root := flag.String("p", "", "file server root directory")
     flag.Parse()
     if len(*root) == 0 {
     log.Fatalln("file server root directory not set")
     }
     if !strings.HasPrefix(*root, "/") {
     log.Fatalln("file server root directory not begin with '/'")
     }
     if !strings.HasSuffix(*root, "/") {
     log.Fatalln("file server root directory not end with '/'")
     }
     p, h := NewFileHandle(*root)
     r := httprouter.New()
     r.GET(p, LogHandle(h))
     log.Fatalln(http.ListenAndServe(":8080", r))
    }
    func NewFileHandle(path string) (string, httprouter.Handle) {
     return fmt.Sprintf("%s*files", path), func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
     http.StripPrefix(path, http.FileServer(http.Dir(path))).ServeHTTP(w, r)
     }
    }
    func LogHandle(handle httprouter.Handle) httprouter.Handle {
     return func(w http.ResponseWriter, r *http.Request, p httprouter.Params) {
     now := time.Now()
     handle(w, r, p)
     log.Printf("%s %s %s done in %v", r.RemoteAddr, r.Method, r.URL.Path, time.Since(now))
     }
    }

    准备测试文件

    编译运行

    用浏览器访问

    以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

    您可能感兴趣的文章:
    • go 原生http web 服务跨域restful api的写法介绍
    • golang http使用踩过的坑与填坑指南
    • Go http client 连接池不复用的问题
    • Golang实现http server提供压缩文件下载功能
    • golang语言http协议get拼接参数操作
    • Golang 实现分片读取http超大文件流和并发控制
    • Go 实现HTTP中间人代理的操作
    上一篇:golang实现各种情况的get请求操作
    下一篇:go语言的初始化顺序,包,变量,init详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    在go文件服务器加入http.StripPrefix的用途介绍 在,文件,服务器,加入,http.StripPrefix,