I am having problems trying to match '#' character for Universal Link file (apple-app-site-association).
For an URL like domain/#/results/parameters I've been trying with:
- /?/results/*
- /*/results/*
- /#/results/*
- /\#/results/*
- /%23/results/*
But none of them worked for me.
The annoying point is the two first matches the almost equal URL domain/a/results/parameters (whatever character instead #)
How can I match the #?
Regards