I have a question regarding websites that use custom handlers to redirect pages.
When you would create a loader.ashx file in asp.net and you use that handler to make use of seo friendly pages it’s not easy to use analytics.
For instance :
In web.config I refirect every page that contains “country” to loader.ashx
Ex
www.microsoft.com/country/belgium.aspx is redirected internally to
loader.ashx?type=country&name=Belgium
which would refer to
countries.aspx?id=4 (where 4 is the ID related to Belgium
in my analytics, I get the loader.asxh?type=country&name=Belgium as the visited url.
Is there a way to get around this ?
thanks
koen