当我在路径中使用参数时如何更改静态文件的URL

router.Static("/static", config.STATIC_PATH)
router.LoadHTMLGlob(config.TEMPLATE_PATH+"/*")
router.GET("/user:uname",handlers.Index )

The href of css file will become "/user/static/css/fontawesome.css",gin add "user" on all the href of css, js in index.html,how to avoid that?