301 Redirect from Wix to WordPress

后端 未结 3 1617
花落未央
花落未央 2021-01-24 01:50

A company I\'m working for had a WIX based site. I recreated the site on WordPress moved the hosting and redirected the domain. I then attempted to do the page redirects to the

3条回答
  •  -上瘾入骨i
    2021-01-24 02:44

    Since wix URLs are hashtags, they cannot be redirected via .htaccess. You must use javascript to redirect urls, e.g.:

    var redirects = {
        '#!about/c10fk':'about',
        '#!contact/c10fk':'contact',
        '#!help/c10fk':'help'
    };
    
    if(window.location.hash != '' && redirects.hasOwnProperty(window.location.hash)) {
        window.location.replace(redirects[window.location.hash]);
    }
    

提交回复
热议问题