mirror of
https://github.com/minio/minio.git
synced 2025-11-09 05:34:56 -05:00
Add StrictSlash for path re-direction
This commit is contained in:
@@ -29,14 +29,9 @@ type webUiApi struct {
|
||||
func HttpHandler() http.Handler {
|
||||
mux := mux.NewRouter()
|
||||
var api = webUiApi{}
|
||||
|
||||
mux.StrictSlash(true)
|
||||
mux.HandleFunc("/", api.homeHandler).Methods("GET")
|
||||
/*
|
||||
mux.HandleFunc("/{bucket}/", api.listObjectsHandler).Methods("GET")
|
||||
mux.HandleFunc("/{bucket}/", api.putBucketHandler).Methods("PUT")
|
||||
mux.HandleFunc("/{bucket}/{object:.*}", api.getObjectHandler).Methods("GET")
|
||||
mux.HandleFunc("/{bucket}/{object:.*}", api.headObjectHandler).Methods("HEAD")
|
||||
mux.HandleFunc("/{bucket}/{object:.*}", api.putObjectHandler).Methods("PUT")
|
||||
*/
|
||||
return mux
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user