GitHub Pages Jekyll使用application / octet-stream作为内容类型进行重定向

时间:2014-09-06 21:09:53

标签: jekyll url-redirection github-pages

我已经在github页面上实现了重定向,但由于某种原因,您的服务器正在为重定向页面返回内容类型“application / octet-stream”。这会导致浏览器无法呈现重定向页面,因此生成的javascript无法执行以实际执行重定向。

如何让响应标头指定文本/ html作为内容类型,以便重定向工作?

这是网址。

http://www.pknopf.com/blog/performance-ccli-vs-com

以下是回复。

HTTP/1.1 200 OK
Server: GitHub.com
Content-Type: application/octet-stream
Last-Modified: Sat, 06 Sep 2014 04:30:37 GMT
Expires: Sat, 06 Sep 2014 04:41:33 GMT
Cache-Control: max-age=600
Content-Length: 598
Accept-Ranges: bytes
Date: Sat, 06 Sep 2014 04:40:38 GMT
Via: 1.1 varnish
Age: 545
Connection: keep-alive
X-Served-By: cache-iad2132-IAD
X-Cache: MISS
X-Cache-Hits: 0
X-Timer: S1409978438.779912,VS0,VE2
Vary: Accept-Encoding


      <!DOCTYPE html>
      <meta charset=utf-8>
      <title>Redirecting...</title>
      <link rel=canonical href="http://www.pknopf.com/development/2013/03/07/Performance-CPP-CLI-vs-COM.html">
      <meta http-equiv=refresh content="0; url=http://www.pknopf.com/development/2013/03/07/Performance-CPP-CLI-vs-COM.html">
      <h1>Redirecting...</h1>
      <a href="http://www.pknopf.com/development/2013/03/07/Performance-CPP-CLI-vs-COM.html">Click here if you are not redirected.</a>
      <script>location='http://www.pknopf.com/development/2013/03/07/Performance-CPP-CLI-vs-COM.html'</script>

1 个答案:

答案 0 :(得分:3)

jekyll redirect from documentation所示,重定向网址需要一个尾部斜杠。

在你的帖子中,你必须在重定向中添加一个尾部斜杠。

例如: _posts / 2013-03-07-Performance-CPP-CLI-vs-COM.md

redirect_from: "/blog/performance-ccli-vs-com"

成为:

redirect_from: "/blog/performance-ccli-vs-com/"