域名调整-SEO优化
Posted straycats
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了域名调整-SEO优化相关的知识,希望对你有一定的参考价值。
===============================================
2019/3/31_第1次修改 ccb_warlock
===============================================
搜索引擎SEO优化是指通过一些手段,提高网站的权重(排名)。
一、域名解析调整
前提:
1. 以www.abc.cn为例;
2. 以nginx作为反代服务器;
3. 反代目标地址:192.168.1.1;
调整前
server { listen 80; server_name www.abc.cn abc.cn; access_log off; error_log off; # 其他解析省略 location / { rewrite ^(.*)$ https://$host$1 permanent; } } server { listen 443 ssl; server_name www.abc.cn abc.cn; access_log off; error_log off; # ssl配置省略 # 其他解析省略 location / { proxy_pass http://192.168.1.1; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_http_version 1.1; } }
调整后
思路:将abc.cn的解析单独拿出来。
假设:
- 设计将http://abc.cn跳转到http://www.abc.cn
- 设计将https://abc.cn跳转到https://www.abc.cn
server { listen 80; server_name www.abc.cn; access_log off; error_log off; # 其他解析省略 location / { rewrite ^(.*)$ https://$host$1 permanent; } } server { listen 443 ssl; server_name www.abc.cn; access_log off; error_log off; # ssl配置省略 # 其他解析省略 location / { proxy_pass http://192.168.1.1; proxy_redirect off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_http_version 1.1; } } server { listen 80; server_name abc.cn; access_log off; error_log off; location / { rewrite ^/(.*) http://www.abc.cn$request_uri? permanent; } } server { listen 443 ssl; server_name abc.cn; access_log off; error_log off; # ssl配置省略 location / { rewrite ^/(.*) https://www.abc.cn$request_uri? permanent; } }
以上是关于域名调整-SEO优化的主要内容,如果未能解决你的问题,请参考以下文章