Go to home page

Measure Your Marketing

Knowledge Base

Articles and tips on how to best use ConversionRuler.

Search for:

What is the correct syntax for query strings?

<< Main Category < Parent Category

SYMPTOMS


Need to know how to format the landing URLs for ConversionRuler, how to deal with landing pages which already have query strings, how to deal with landing pages to my home page, etc.

SOLUTION


The query string format is, actually, an internet standard. With all standards, the implementation of the standard is up to the browser vendors, e.g.

We have taken great pains to make our software as compatible as possible with all browsers, however, some best practices will ensure the highest level of compatiblilty.

A URL (Uniform Resource Locator) is the web address you see so commonly in your web browser's Address bar. It typically looks like:

http://www.some-address.com/some-page.asp?articleid=232

Let's break this into it's pieces:


Now that we should be speaking the same language, let's cover the best practices when generating query strings:


Landings to just your domain name
We recommend using

http://www.some-address.com/?crcat=test&crsource=test&crkw=buy-a-lot


Order: Protocol "://" Domain Name "/?" Landing Parameters
Important is the slash after the domain name, followed by the question mark for best compatibility with browsers.


Landings to a page within your domain name with no query string
We recommend using

http://www.some-address.com/mypage.html?crcat=test&crsource=test&crkw=buy-a-lot


Order: Protocol "://" Domain Name "/" Page Name "?" Landing Parameters
Important is the question mark after the page name and no slash after the page name. Placing a slash after your Page Name will most likely cause an error for the user.


Landings to a page within your domain name with a query string
We recommend using

http://www.some-address.com/catalog.asp?itemid=232&template=fresh&crcat=ppc&crsource=google&crkw=buy-a-lot


Order: Protocol "://" Domain Name "/" Page Name "?" Existing Query String "&" Landing Parameters
Important is the ampersand after the page and query string and no additional question mark or slash after the Existing Query String. Placing a slash or question mark after your Page Name will most likely cause an error for the user.


In summary:

Now, playing around, the following landings are all correct:


http://www.some-domain.com/index.html?&crsource=google
http://www.some-domain.com/?&&&&crsource=google


The following landings will most likely cause problems or not work:


http://www.some-domain.com/catalog.cgi?pid=232?crsource=google
http://www.some-domain.com?crsource=google

If you have specific question about query strings, submit a ticket.

If you have any additional questions, please Submit a ticket to our help desk, or phone us directly at +1 866-622-8636.

Support Options