我刚刚为我的公司创建了一个新的rails web应用程序,但是想保留旧的域名以用于谷歌搜索引擎优化目的。如何将旧链接重定向到同一域中的新链接?
例如,我有这个旧页面...
http://www.horschgallery.com/photo/black-white-chicago-vertical/chicago-cityscape-photo-sears-tower-willis-tower.aspx
需要重定向到当前托管在heroku上的新页面 http://horschgallery.herokuapp.com/photos/chicago-cityscape-photo-sears-tower-willis-tower
但是我想将heroku应用程序放在horschgallery.com域上(因为我需要更改服务器指向的IP地址,因此该域名尚不存在) horschgallery.com/photos/chicago-cityscape-photo-sears-tower-willis-tower
答案 0 :(得分:0)
将此代码粘贴到旧域并放入域网址
<script language=javascript>
function redirect(){
window.location = "http://example.com";
}
</script>
<body onload="redirect()">
</body>
或点击此处 - &gt; Changing Your URL Without Penalizing Your Search Engine Optimization