I have multi-page web application which require login. (In this project, I use Supabase.)
However, there is one page that does not require authentication. It is anonymous feedback page. I want to send URL of this page to user.
When I login and then go to this page, it is working properly. The URL will be like this.
http://localhost:12345/feedback?issue=13
"feedback" is page name. I run this on my local machine.
Then, I use other browser (not login). I browse to this URL. I got 404.
Is it possible to use this URL?
If not, please kindly advise how to get URL of this page?
I don't know the right keyword to search in document.
I have tried and found something such as deep link and dynamic link. However, these require application. But this case is web application.