Creating custom links

I’m making an app similiar to instagram where each user has a profile and if they want, they can share it using a link. I’m looking for solutions to create a new link for every username.

Nutshell:
Creating an app that generates custom links for every profile. Similiar to Instagram

Example
If the username is dhanush01
the link should be
https://www.myapp.com/dhanush01/

Any solutions for this??

I will give you a quick answer, but there may be other alternatives.

Use PAGE PARAMETERS. This way, whenever you access the link with such parameters, you can set up a request in the database to access the profile information that was requested in the URL

1 Like

makes sense! thank you very much

1 Like