去年这时候考虑到百度的SEO问题,便没有启用HTTPS,趁着现在是周末试试将用户都定向到HTTPS——除了百度Spider。
于是修改了下Nginx的配置
if ($http_user_agent !~* Baiduspider)
{
rewrite ^(.*)$ https://www.phodal.com$1 permanent;
}
除了Baidu Spider外的都定向到https。
测试百度
fdhuang ⓔ test ~/Desktop curl -I -A Baiduspider www.phodal.com
HTTP/1.1 200 OK
Server: phodal/0.19.4
Content-Type: text/html; charset=utf-8
Connection: keep-alive
Vary: Accept-Encoding
Vary: Accept-Language, Cookie
Content-Language: en
X-UA-Compatible: IE=Edge,chrome=1
Date: Sat, 22 Aug 2015 00:48:08 GMT
X-Page-Speed: Powered By Phodal
Cache-Control: max-age=0, no-cache
测试谷歌
fdhuang ⓔ test ~/Desktop curl -I -A google www.phodal.com
HTTP/1.1 301 Moved Permanently
Server: phodal/0.19.4
Date: Sat, 22 Aug 2015 00:49:04 GMT
Content-Type: text/html
Content-Length: 186
Connection: keep-alive
Location: https://www.phodal.com/
Cache-Control: max-age=600
Link: <http://www.phodal.com/>; rel="canonical"
Set-Cookie: lcid=1033;Domain=.phodal.com;Path=/;Max-Age=31536000
在这时候遇到的一个主要问题就是评论,多说的头像还是HTTP影响到网站的情况。后来算了一下评论量也不高,而且如果是一个really程序员,应该也会常用——因为经常访问国外网站。
于是就将多说注释了。
让我们等等看未来几天的流量统计和情况吧。
围观我的Github Idea墙, 也许,你会遇到心仪的项目