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
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]);
}