dziudek wrote:Please check if the problem occurs always or only if you visit your page without "www." prefix.
if(window.location.host.substr(0, 4) === 'www.') {
window.location.href = 'https://www.domain.com/my-cart';
} else {
window.location.href = 'https://domain.com/my-cart';
}