我正在使用blogspot.com,我需要将我的博客重定向到具有相同路径/页面的其他博客
示例:
From: [www.myblog.blogspot.com/2013/11/blogging-tips.html]
to: [www.newblog.blogspot.com/2013/11/blogging-tips.html]我只想用("www.newblog.blogspot.com")替换("www.myblog.blogspot.com")
有没有人有建议?
发布于 2014-01-29 13:08:44
window.location.host = 'www.newblog.blogspot.com';看看这个:http://www.w3schools.com/jsref/obj_location.asp
https://stackoverflow.com/questions/21421654
复制相似问题