博客地址 https://brad.9iqu.cn
我的博客是使用 hexo 搭建的博客,有些链接会被重定向,不知道这是 hexo 的问题,还是我 nginx 配置的问题。
比如我博客里面有个页面 a 标签地址是 https://brad.9iqu.cn/tags ,然后它就非要给我 301 重定向到 https://brad.9iqu.cn/tags/ 。反正不带 /后缀的导航标签,基本都被重定向,感觉这样有点影响性能
下面是我的 nginx 配置
#重定向到 https 请求
server {
listen 80;
server_name brad.9iqu.cn;
return 301 https://$server_name$request_uri;
}
#https
server {
listen 443 ssl http2 ; #SSL 访问端口号为 443
server_name brad.9iqu.cn;
ssl_certificate cert/1_brad.9iqu.cn_bundle.crt; #证书文件
ssl_certificate_key cert/2_brad.9iqu.cn.key; #私钥文件
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #按照这个协议配置
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;#按照这个套件配置
ssl_prefer_server_ciphers on;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /www/hexo-blog/public;
index index.html index.htm index.php;
}
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# deny access to .htaccess files, if Apache's document root
location ~ /\.ht {
deny all;
}
}
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.