• 重定向

    重定向

    HTTP 重定向很容易。 内部、外部重定向均支持。

    1. r.GET("/test", func(c *gin.Context) {
    2. c.Redirect(http.StatusMovedPermanently, "http://www.google.com/")
    3. })

    路由重定向,使用 HandleContext

    1. r.GET("/test", func(c *gin.Context) {
    2. c.Request.URL.Path = "/test2"
    3. r.HandleContext(c)
    4. })
    5. r.GET("/test2", func(c *gin.Context) {
    6. c.JSON(200, gin.H{"hello": "world"})
    7. })