Hi Philippe
Have you considered adding a test in your home page onReady for the device form factor?
Take a look at this:
What you should be able to do is test for a mobile form factor and then redirect from the desktop page to the mobile one you want to go to. Something like this:
import wixWindow from 'wix-window';
import wixLocation from 'wix-location';
// ...
let formFactor = wixWindow.formFactor;
$w.onReady(() => {
if (formFactor === 'Mobile') {
// Redirect to my dedicated mobile page
wixLocation.to('/mobileHome');
}
});