在Golang中,可以使用http.Redirect
函數(shù)來實現(xiàn)重定向。
package main
import (
"net/http"
)
func redirectHandler(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "http://www.example.com", http.StatusFound)
}
func main() {
http.HandleFunc("/redirect", redirectHandler)
http.ListenAndServe(":8080", nil)
}
在上面的示例中,redirectHandler
函數(shù)會被注冊為處理/redirect
路徑的請求。當(dāng)收到該請求時,http.Redirect
函數(shù)會將響應(yīng)重定向到http://www.example.com
網(wǎng)站,并返回狀態(tài)碼http.StatusFound
。
你可以根據(jù)自己的需求修改重定向的目標(biāo)URL和狀態(tài)碼。