Search.../

path

Gets the path of the current page's URL.

Description

The path for a regular page is after the baseUrl If the page is a dynamic page or router page, the prefix appears after the base URL, before the path.

Premium sites:
Path for a regular page, without a prefix: Premium site path
Path for a dynamic or router page with a prefix: Premium site path

Free sites:
Path for a regular page, without a prefix: Free site path
Path for a dynamic or router page with a prefix: Free site path

Type:

Array<string>Read Only

Was this helpful?

Get the path of the current page's URL

Copy Code
1import wixLocationFrontend from 'wix-location-frontend';
2
3// Premium site URL: "https://www.domain.com/elephant?species=african-elephant#desc"
4// Free site URL: "https://user_name.wixsite.com/zoo/elephant?species=african-elephant#desc"
5
6let path = wixLocationFrontend.path; // ["elephant"]