有可能但可能不是进行重定向的理想场所。如果您将此 javascript 添加到 twigplay.com 上的所有页面,它将为您处理重定向:
<script type="text/javascript">
(function(){
// changes the location's hostname, the path remains the same
// so if you're at http//twigplay.com/whatever/the/url.html it will
// redirect to http://mimuz.com/whatever/the/url.html
window.location.hostname = 'mimuz.com';
})();
</script>
尽管发出 HTTP 301 来传达您已将内容移动到新域的事实,但在您的服务器上设置重定向可能更理想。如果您使用的是 Apache 网络服务器,您可能希望使用mod_rewrite来发出重定向。您将在.htaccess
文件中放入的一组示例规则:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^twigplay\.com$
RewriteRule ^(.*)$ http://mimuz.com/$1 [L,R=301]
这实质上是告诉 Apache 重定向到twigplay.com的任何 url以重定向到相同的 url 但在mimuz.com并发出 HTTP 301 Moved Permanently 标头,这将通知搜索引擎他们拥有的有关原始 url 的任何信息都应该适用到新的。