-2
我在谷歌搜索中有重複的地址鏈接,如何將所有的「https://ip-111-11-111-11.privatedns.ws/person.html」重定向到我的域名?如何將「ip-111-11-111-11.privatedns.ws」重定向到我的域名?
我在谷歌搜索中有重複的地址鏈接,如何將所有的「https://ip-111-11-111-11.privatedns.ws/person.html」重定向到我的域名?如何將「ip-111-11-111-11.privatedns.ws」重定向到我的域名?
這取決於您使用的是什麼Web服務器。一般來說,你正在尋找執行301重定向。
在nginx的,這樣做是using the Rewrite module:
server {
...
rewrite ^/person.html$ http://www.domain2.com/ permanent;
....
}
在Apache中,這樣做是using Rewrite Engine/Rewrite Rule:
RewriteEngine on
RewriteRule ^/person.html http://www.domain2.com/~$1 [L,R=301]