【错误记录/go】访问golang静态服务器路由出现404错误

错误详情

  • 想要使用不同的路由规则作为静态文件服务器时,访问不到
    127.0.0.1/common
    
    package main
    
    import (
    	"net/http"
    )
    
    func main() {
    	http.Handle("/common/", http.FileServer(http.Dir("./test")))
    	http.ListenAndServe(":8080", nil)
    }
    

解决

  • test目录下没有common文件夹
  • 正确的目录结构应该是这样子的
    127.0.0.1/common
    
    http.Handle("/common/", http.FileServer(http.Dir("./test")))
    
    那么结构如下
    ----test
          |
          ----common
                |
                1.txt
    

你可能感兴趣的:(错误记录)