如何利用golang
实现HTTP
链接跳转?下面web建站小编给大家简单介绍一下具体实现方法!
语法介绍:
func Redirect(w ResponseWriter, r *Request, url string, code int)
代码示列:
package main import ( "net/http" ) func redirect(w http.ResponseWriter, r *http.Request) { http.Redirect(w, r, "https://www.baidu.com", http.StatusMovedPermanently) } func main() { http.HandleFunc("/", redirect) err := http.ListenAndServe(":8080", nil) if err != nil { panic(err.Error()) } }
golang如何实现全部转换为同一种编码方式(防止字符乱码)
上面是“golang如何实现HTTP链接跳转”的全面内容,想了解更多关于 后端开发 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4022.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!