url


urlstringRead-only

Gets the relative url of the page.

Get the sitemap entry relative URL
JavaScript
import wixSiteFrontend from "wix-site-frontend"; // ... wixSiteFrontend.routerSitemap("routerPrefix").then((routerSitemap) => { const firstEntryRelativeUrl = routerSitemap[0].url; // '/apartments/cozy-condo' });
Did this help?