代码拉取完成,页面将自动刷新
package main
import (
"bytes"
"log"
"net/http"
)
var redirectPages = map[[2]string][2]string{
{"fundamentals", "go-sdk.html"}: {"fundamentals", "go-toolchain.html"},
{"fundamentals", "tools.html"}: {"apps-and-libs", "101.html"},
{"fundamentals", "tool-golds.html"}: {"apps-and-libs", "golds.html"},
}
func (go101 *Go101) RedirectArticlePage(w http.ResponseWriter, r *http.Request, group, file string) bool {
redirectPage, ok := redirectPages[[2]string{group, file}]
if ok {
page, isLocal := go101.ArticlePage(group, file)
if page == nil {
pageParams := map[string]interface{}{
"RedirectPage": "/" + redirectPage[0] + "/" + redirectPage[1],
//"IsLocalServer": isLocal,
//"Value": func() func(string, ...interface{}) interface{} {
// var kvs = map[string]interface{}{}
// return func(k string, v ...interface{}) interface{} {
// if len(v) == 0 {
// return kvs[k]
// }
// kvs[k] = v[0]
// return ""
// }
//}(),
}
t := retrievePageTemplate(Template_Redirect, !isLocal)
var buf bytes.Buffer
if err := t.Execute(&buf, pageParams); err == nil {
page = buf.Bytes()
} else {
page = []byte(err.Error())
}
if !isLocal {
go101.CacheArticlePage(group, file, page)
}
}
if len(page) == 0 { // blank page means page not found.
log.Printf("文章%s/%s未找到", group, file)
//w.Header().Set("Cache-Control", "no-cache, private, max-age=0")
http.Redirect(w, r, "/article/101.html", http.StatusNotFound)
} else if isLocal {
w.Header().Set("Cache-Control", "no-cache, private, max-age=0")
} else {
w.Header().Set("Cache-Control", "max-age=50000") // about 14 hours
}
w.Write(page)
}
return ok
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。