Hello everyone.
So I was working on implementing deeplinks in our ionic app. It is written in Vue, and our website is in Nuxt.
I followed all the procedures (generated keystore
, added a file to .well-known
to our Nuxt website, everything per documentation).
And It was working.
In the app we have a /faq
route - but did not have /faq
route on our Nuxt website. So that when I click on the link on the website - it redirected me in the app and opened /faq
page. Everything was working.
Then I wanted to check out what will happen if I have /faq
page on the website as well. Simply added it, and checked - turns out if you have both /faq
in the app and on the website - the website page will be opened, and not a deeplink.
Then, I deleted the /faq
page on the website, to get back to deeplink - but not, when I click on that link, it just says That webpage is not found
. Why is that?
I did not change anything apart from adding /faq
page on the Nuxt website and then deleting it…
How to make deeplinks work again!?!?!?