I want to redirect the domain1.com/abc to domain2.com/abc without changing /abc it should be the same but only domain should change. I mean after / everything should be same only the domain before / should be changed to domain2. Like I do using script:-
<script>
window.location.href = window.location.href.replace(window.location.origin,"https://www.domain2.com")
</script>
<script>
window.location.href = window.location.href.replace(window.location.origin,"https://www.domain2.com")
</script>