Golang : How to redirect to new page with net/http?
Problem :
You need to do a page redirect in Golang. How to do it ?
Solution :
Use net/http
package Redirect()
function.
For example :
Example 1:
package main
import (
"log"
"net/http"
)
func redirect(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, "http://www.golang.org", 301)
}
func main() {
http.HandleFunc("/", redirect)
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
Example 2:
func viewHandler(w http.ResponseWriter, r *http.Request) {
title := r.URL.Path[len("/view/"):]
p, err := loadPage(title)
if err != nil {
http.Redirect(w, r, "/edit/"+title, http.StatusFound)
return
}
renderTemplate(w, "view", p)
}
References :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+27.7k Golang : Move file to another directory
+5.6k Golang : Markov chains to predict probability of next state example
+15.2k Golang : rune literal not terminated error
+10.8k Google Maps URL parameters configuration
+12.6k Python : Convert IPv6 address to decimal and back to IPv6
+21.8k Golang : Securing password with salt
+10.9k Golang : How to pipe input data to executing child process?
+8k Golang : Emulate NumPy way of creating matrix example
+8.5k Golang : Take screen shot of browser with JQuery example
+17.7k Golang : Convert IPv4 address to decimal number(base 10) or integer