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
+10.5k Golang : Get local time and equivalent time in different time zone
+5.8k Golang : Denco multiplexer example
+8.5k Linux/Unix : fatal: the Postfix mail system is already running
+13.7k Golang : Convert spaces to tabs and back to spaces example
+30.7k Golang : Download file example
+4.6k MariaDB/MySQL : How to get version information
+7.9k Swift : Convert (cast) String to Float
+26.6k Golang : How to check if a connection to database is still alive ?
+5.9k Golang : Extract unicode string from another unicode string example
+11.8k Golang : How to parse plain email text and process email header?
+24.4k Golang : Time slice or date sort and reverse sort example