删除Plesk预览域重定向

时间:2014-05-28 08:09:37

标签: .htaccess redirect plesk

Plesk为您提供了一种在切换DNS之前预览网站的便捷方式,称为Websites Preview

这就是它的作用:

  

customer-site.tld将以customer-site.tld.192-0-2-12.your-domain.tld的形式提供预览。这里192-0-2-12是站点的IP,其中点用短划线替换

我发现此功能非常有用,因为我们在网站上线之前用它来校对网站,但是在网站上线后,customer-site.tld.192-0-2-12.your-domain.tld网址仍然存在,并且会显示在某些Google搜索结果中!

如何仅删除某些网站的预览网址,而不是服务器上的所有网站?

或者我认为我可能会为此使用.htaccess规则,但如果没有重定向循环,我无法弄清楚如何做到这一点。

2 个答案:

答案 0 :(得分:0)

我通过更多搜索找到了答案(我搜索了如何重定向域别名,因为这就是本质上的内容)。

答案在这里:Redirecting all domain aliases to one with htaccess

RewriteEngine On
# If the hostname is NOT www.domain.com
RewriteCond %{HTTP_HOST} !^www\.domain\.com$
# 301 redirect to the same resource on www.domain.com
RewriteRule (.*) http://www.domain.com/$1 [L,R=301]

答案 1 :(得分:0)

使用robots.txt文件阻止抓取工具为您的网页编制索引。完成DNS切换后,删除robots.txt文件