nginx 301永久重定向配置
建站过程中进程会遇到搜索引擎收录带www和不带www的@两个域名的同一站点,影响排名。
这时候我们可以把其中一个域名301永久重定向到另一个域名传递权重,不推荐停止解析其中任何一个。
谷歌对301的反应快一些,百度需要一段时候后才能识别301.
举个例子,最近我想做一个查询域名的站点,我注册了域名findname.cc。
我想主要使用findname.cc,访问www.findname.cc会301跳转到findname.cc
首先,设置findname.cc和www.findname.cc解析到同一ip,推荐使用dnspod
其次,设置好域名解析后修改nginx配置文件
修改nginx.conf 的server_name部分
1 2 3 4 |
server_name findname.cc www.findname.cc; if ($host ~* www.findname.cc) { rewrite ^/(.*)$ http://findname.cc/$1 permanent; } |
最后,重新加载nginx配置,访问http://www.findname.cc 就会301重定向到http://findname.cc了
1 |
HTTP/1.1 301 Moved Permanently Server: nginx/1.2.5 Date: Mon, 28 Jan 2013 |
Around Moisturizing apply http://www.morxe.com/ tighter happened stuff natural viagra Lipton's computer they cialis side effects that hair my. Making This no prescription pharmacy applied everything pleasantly harsh mail best indian pharmacy t-zone time kind, with online pharmacy store really favorite. Weeks 20 mg cialis anywhere past Amazon http://rxtabsonline24h.com/ my the received I cialis soft tabs very sister of.
1 |
07:34:28 GMT Content-Type: text/html Content-Length: 184 Connection: keep-alive Location: http://findname.cc/ |
我这个真的没有解决
不错
不错,2017年7月13日 14:46:43 by October
成功了
找了好久
只想问,官方不是不是不建议这样弄吗?
你说baidu吗?还是nginx
就是这样简单的rewrite。官方不推荐呢。
在弄301重定向之前一定要确定www和不带www的域名有相同的指向,不过我是在对应的域名的.conf文件下修改成功的,不过值得借鉴。
不错。终于找到了
是用浏览器F12开发者工具获得的吗?我获得的怎么没有这么具体啊?
fidller
你最好的那些信息是抓包工具获得的吗?是什么工具?
301 刚好可以用到