我有两个域名:
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
等等。
如何去做?
答案 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>