> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: wix-router ## Namespace: wix-router-request ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/events-service-plugins/routers/service-plugins/wix-router/wix-router-request/introduction.md ## Article Content: # Introduction The `WixRouterRequest` object breaks the URL of the incoming router request into different parameters for easy access. The URL is broken into: + [`baseUrl`](wix-router/wix-router-request/base-url) + [`prefix`](wix-router/wix-router-request/prefix) + [`path`](wix-router/wix-router-request/path) + [`query`](wix-router/wix-router-request/query) + `hash` (for optional fragment identifier descriptions) #### Premium Sites For premium sites, the URL of the site router request has the following format: **`https://www.domain.com/myPrefix/myPath?myQuery=myValue#myHashDesc`** + **baseUrl**:     `https://www.domain.com` + **prefix**:        `myPrefix` + **path**:          `myPath` + **query**:        `myQuery=myValue` + **hash**:        `#myHashDesc` **Example**: **`https://domain.com/mammals/elephant?species=african-elephant#LifeSpan`** + **baseUrl**:     `https://domain.com/` + **prefix**:        `mammals` + **path**:          `elephant` + **query**:        `species=african-elephant` + **hash**:        `#LifeSpan` #### Free Sites For free sites, the URL of the site router request has the following format: **`https://user.wixsite.com/mySite/myPrefix/myPath?myQuery=myValue#myHashDesc`** + **baseUrl**:     `https://user.wixsite.com/mySite` + **prefix**:        `myPrefix` + **path**:          `myPath` + **query**:        `myQuery=myValue` + **hash**:        `#myHashDesc` **Example**: **`https://user.wixsite.com/zoo/mammals/elephant?species=african-elephant#LifeSpan`** + **baseUrl**:     `https://user.wixsite.com/zoo` + **prefix**:        `mammals` + **path**:          `elephant` + **query**:        `species=african-elephant` + **hash**:        `#LifeSpan` > **Note:** The above URLs are for a published site. When previewing your site, you will receive the Editor URL.