在go文件服务器加入http.StripPrefix的用途介绍
作者:yyyzhhhhh 时间:2023-06-26 07:19:07
例子:
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))
}
}
准备测试文件
编译运行
用浏览器访问
以上为个人经验,希望能给大家一个参考
来源:https://blog.csdn.net/a13602955218/article/details/106692668
标签:go,服务器,http,StripPrefix
0
投稿
猜你喜欢
友情连接地址代码-线线表格
2010-07-01 16:26:00
xhtml有哪些块级元素
2009-12-06 11:58:00
Hadoop中的Python框架的使用指南
2023-09-06 14:23:40
asp如何对一个文件夹进行创建和删除?
2009-11-20 18:42:00
asp内置对象Application详解
2007-09-19 12:08:00
Python爬取当网书籍数据并数据可视化展示
2023-11-20 11:31:14
深入理解TCP协议与UDP协议的原理及区别
2022-11-06 21:30:31
CI框架教程之优化验证码机制详解【验证码辅助函数】
2024-05-13 09:56:34
TensorFlow加载模型时出错的解决方式
2023-12-23 05:49:04
PHP实现的获取文件mimes类型工具类示例
2023-10-07 09:33:33
原生JavaScript实现的简单省市县三级联动功能示例
2024-06-05 09:13:24
python字符串拼接+和join的区别详解
2021-10-19 01:26:39
MYSQL字符串强转的方法示例
2024-01-13 10:38:58
Python中base64与xml取值结合问题
2021-08-22 21:15:03
pytorch分类模型绘制混淆矩阵以及可视化详解
2023-01-17 17:35:43
使用Python做定时任务及时了解互联网动态
2021-07-08 17:54:16
导航设计与信息架构
2008-01-13 22:08:00
Python3爬虫里关于Splash负载均衡配置详解
2022-11-24 22:54:19
浅谈Python模块导入规范
2021-02-03 03:39:37
css中浮动思考与小结
2008-10-30 11:57:00