I'm serving a static folder using mux.
Navigating the "/" on my server renders index.html, and navigating to "/help.html" renders the help page. Is there a way I can dynamically serve this folder and remove the html suffix on routes?
This what I am currently doing.
router := mux.NewRouter()
router.PathPrefix("/").Handler(http.FileServer(http.Dir("./static")))
