index.go 236 B

1234567891011121314
  1. package controller
  2. import (
  3. "git.wanbits.cc/sin/flytalk/models"
  4. "github.com/gin-gonic/gin"
  5. )
  6. func Index(c *gin.Context) {
  7. jump := models.FindConfig("JumpLang")
  8. if jump != "cn" {
  9. jump = "en"
  10. }
  11. c.Redirect(302, "/index_"+jump)
  12. }