pageURL
AppMeasurement automatically collects the page URL in each hit. If you want to override the page URL automatically collected by AppMeasurement, you can use this variable. You do not need to set this variable in most cases.
pageURL
variable into an eVar on every hit.Page URL using the Web SDK
Page URL is mapped for Adobe Analytics under the XDM field web.webPageDetails.URL
.
Page URL using the Adobe Analytics extension
The Analytics extension in Adobe Experience Platform Data Collection automatically populates page URL. However, you can set the page URL override either while configuring the Analytics extension (global variables) or under rules.
- Log in to Adobe Experience Platform Data Collection using your AdobeID credentials.
- Click the desired tag property.
- Go to the Rules tab, then click the desired rule (or create a rule).
- Under Actions, click an existing Adobe Analytics - Set Variables action or click the ‘+’ icon.
- Set the Extension drop-down list to Adobe Analytics, and the Action Type to Set Variables.
- Locate the Page URL section.
You can set page URL to any string value.
s.pageURL in AppMeasurement and the Analytics extension custom code editor
The s.pageURL
variable is a string that contains the URL of the page. AppMeasurement automatically collects this variable, however you can override its value if desired.
s.pageURL = "https://example.com";
If you would like to use page URL as a dimension in reports, consider using the following in your implementation:
// Set eVar1 to page URL without protocol or query strings
s.eVar1 = window.location.hostname + window.location.pathname;
If using the digitalData
data layer:
s.pageURL = digitalData.page.pageInfo.destinationURL;