我想删除路径中最后一个尾部斜杠,例如:localhost:8080/Login/ --> localhost:8080/Login。在代码中,我使用/login而不是/login/但css和js不起作用,请帮忙!
这是我的代码:
转到文件:
func main() {
fileServer := http.FileServer(http.Dir("pages"))
//http.Handle("/Login/", http.StripPrefix("/Login/", fileServer))
http.Handle("/Login", http.StripPrefix("/Login", fileServer))
http.ListenAndServe(":8080", nil)
}
HTTP 文件:
<link href="/css/bootstrap/bootstrap-4.3.1.css" rel="stylesheet" />
<script src="/js/bootstrap/bootstrap-4.3.1.js"></script>
HUH函数
炎炎设计
杨__羊羊
相关分类