Button需要重定向到不同URL的同一页面

时间:2018-01-18 20:20:51

标签: redirect button

我有两个域名:

domain.com domain.it

需要在语言按钮中添加脚本/代码,以便将所有使用英语的页面重定向到意大利语域中的相同页面,只需替换域扩展名,例如:

domain.com/text.html domain.it/text.html

domain.com/text1.html domain.it/text1.html

domain.com/text2.html domain.it/text2.html

等等。

如何去做?

1 个答案:

答案 0 :(得分:0)

<button onclick="redirect()">Italian Version</button>

<script>
function redirect()
{
  var currentUrl = window.location.href;
  var newUrl = currentUrl.replace(".com", ".it");
  window.location.replace(newUrl);
}
</script>