I have an instant app and a Firebase dynamic link which redirects to this instant app.
But when I click the dynamic link on a computer, the link leads to a non existant page of my website.
According to Google doc : https://firebase.google.com/docs/dynamic-links/android/create
When users open a Dynamic Link on a desktop web browser, they will load this URL (unless the ofl parameter is specified). If you don't have a web equivalent to the linked content, the URL doesn't need to point to a valid web resource. In this situation, you should set up a redirect from this URL to, for example, your home page.
So I created a redirection for my dynamic link which redirects /share/** to /
And it works, when I click the link on a computer I land on the homepage of my website. But my Dynamic links also leads on my homepage and do not open my instant app anymore.
So my question is : how to configure a redirection which redirects desktop users from /share/** to / without breaking my instant app ?