mirror of
https://github.com/m1k1o/neko.git
synced 2025-06-05 12:22:52 +02:00
go files serve RequestURI -> URL.Path.
This commit is contained in:
parent
a5c90f6198
commit
afb416ea57
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ func New(conf *config.Server, webSocketHandler types.WebSocketHandler) *Server {
|
|||
|
||||
fs := http.FileServer(http.Dir(conf.Static))
|
||||
router.Get("/*", func(w http.ResponseWriter, r *http.Request) {
|
||||
if _, err := os.Stat(conf.Static + r.RequestURI); !os.IsNotExist(err) {
|
||||
if _, err := os.Stat(conf.Static + r.URL.Path); !os.IsNotExist(err) {
|
||||
fs.ServeHTTP(w, r)
|
||||
} else {
|
||||
w.WriteHeader(http.StatusNotFound)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue