I use following sample URL pattern to search pattern on my web site.
http://www.mysite.com/search/someword
No query strings, just clean URL..
How can set this URL to google analytics site search system?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In theory, you should be able to create a profile filter to convert the URLs to use a query string. In practice, it turns out it’s not possible, because Site Search gets processed before filters get processed.
Instead, what I’ve found that works is to just manipulate it in JavaScript so that you “fake” a query string directly from the browser.
Something like:
This would “fake” a query string with a key of
qthat you could then easily use the Site Search feature with.