第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

如何使用 golang 庫 net/http 從 https://www.*

如何使用 golang 庫 net/http 從 https://www.*

Go
慕妹3146593 2022-06-01 15:27:24
我正在嘗試使用 golang 庫 net/http 將所有請求重定向到相同的 url。正在工作:http://DOMAIN -> https://DOMAINhttp://www.DOMAIN -> https://DOMAIN還沒有工作:https://www.DOMAIN -> https://DOMAIN兩個(gè) url 為所有請求的資源返回相同的內(nèi)容,但這對于會話 cookie 無關(guān)緊要。我的最小代碼:  func listenAndHandle() {        http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))        http.HandleFunc("/", handle.PageIndex)        go func() {            if err := http.ListenAndServe(":80", http.HandlerFunc(redirectTLS)); err != nil {                handle.Lv.Println("ListenAndServe error:", err)            }        }()        handle.Lv.Println(http.ListenAndServeTLS(database.Config.PORT, database.Config.TLScertfile,    database.Config.TLSkeyfile, nil))    }    func redirectTLS(w http.ResponseWriter, r *http.Request) {        if strings.Contains(r.Host, "www.") {            u := *r.URL            u.Host = strings.Replace(r.Host, "www.", "", 1)            u.Scheme = "https"            http.Redirect(w, r, u.String(), http.StatusFound)            return        }        http.Redirect(w, r, database.Config.TLSurl+r.RequestURI, http.StatusMovedPermanently)    }我對添加另一個(gè)庫來解決這個(gè)問題并不感興趣,其他一切都可以在 golang 默認(rèn) net/http 下正常工作。
查看完整描述

1 回答

?
小唯快跑啊

TA貢獻(xiàn)1863條經(jīng)驗(yàn) 獲得超2個(gè)贊

使用重定向到裸域或委托給原始處理程序的處理程序包裝 TLS 服務(wù)器處理程序。


問題中的代碼使用http.DefaultServeMux作為處理程序的 TLS 服務(wù)器。這是一個(gè)處理函數(shù),可以重定向或調(diào)用 http.DefaultServeMux:


func redirectWWW(w http.ResponseWriter, r *http.Request) {

    if strings.HasPrefix(r.Host, "www.") {

        u := *r.URL

        u.Scheme = "https"

        u.Host = strings.TrimPrefix(r.Host, "www.")

        http.Redirect(w, r, u.String(), http.StatusFound)

        return

    }

    http.DefaultServeMux.ServeHTTP(w, r)

}

在 TLS 服務(wù)器中使用此處理程序:


    handle.Lv.Println(http.ListenAndServeTLS(database.Config.PORT, database.Config.TLScertfile,

database.Config.TLSkeyfile, http.HandlerFunc(redirectWWW)))


查看完整回答
反對 回復(fù) 2022-06-01
  • 1 回答
  • 0 關(guān)注
  • 162 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號