|
I don't know if it's possible, at least if I understand what you're asking for.
Are you doing a html redirection, or is it a script?
Like in perl:
print "Location: http://www.example.com\n\n";
or php:
header ("Location: http://www.example.com");
If you're using html for the redirection, maybe move to a script based option, if that might be feasible for you. I don't know if that would help, though, I've never paid attention to the secondary url in my logs.
Another option is to create your own tracking system - if your site is dynamic already it wouldn't take much of anything to setup an admin page & add a function to your existing pages to log traffic. However, if you have a static website it'd be a bit harder, but you could log traffic/pages with SSI even if you're using a static website.
Maybe that'll give you a couple of ideas.
|