hi there, i want to redirect users that click on my homepage on google results - to a specific page on my site.
this is a light-weight page, designed for mobile users. (for better loading speed)
i know how to find out if a user is viewing my site using a mobile device:
import wixWindow from ‘wix-window’;
$w.onReady(function () {
if(wixWindow.formFactor === “Mobile”){ function to redirect
}
just need help with the issue of re-directing…
many thanks,