Mobile Redirect

shalom, my site https://www.bioherby.de, im trying to re-direct mobile users from
https://www.bioherby.de/bio-jiaogulan-tee-biologisches to https://www.bioherby.de/jiaogulan-mobile.
on the corvid code page in https://www.bioherby.de/bio-jioagulan-tee-biologisches i entered this code:

import wixWindow from ‘wix-window’;
import wixLocation from ‘wix-location’;

$w.onReady( function () {
if (wixWindow.formFactor === “Mobile”){
wixLocation.to.to("https://www.bioherby.de/jiaogulan-mobile"https://www.bioherby.de/jiaogulan-mobile’);
}
});

But i get the error: Http parsing… someone helppp!
peter

see attachment,

import wixWindow from 'wix-window';
import wixLocation from 'wix-location';

$w.onReady(function () {
    if (wixWindow.formFactor === "Mobile") {
        wixLocation.to("https://www.bioherby.de/jiaogulan-mobile");
    }
});