This is a generic question;
When you Google a hex code let's say #abcdef you'll be shown with thousands of results each similar to https://example.com/abcdef
Since there are about 16 million hex codes it isn't practical for any website to create 16 million pages i.e., one for each color code.
Similarly, when you search for a flight from let's say LA to Seattle you'll be shown with links like these https://example.com/flights/lax/sea/los-angeles-to-seattle
It they use JavaScript, then the content would be dynamically created when they click on the link. so, the content in the description section of a search should be fed through sitemaps.
Since a sitemap can have only 50,000 URLs in one sitemap. How do they manage to map all the colors and flight information via search to their website?
Few options passed my mind, but I dunno which exactly.
Can anyone explain how such links are created?
If the page is created dynamically then there must exist like 16 million pagesNo, dynamically mean there created dynamically, otherwise they would be static pages. In the url there will be some sort of reference for the server side to generate the page dynamically.. eg.."https://example.com/abcdef"the server side will extract theabcdefand then render the page. - Keith/doreverse/pink, could maybe render a page with the wordknip. A kind of hello world for dynamic routing. More info here on doing routing with express -> expressjs.com/en/guide/routing.html - Keith