HighDots Forums  

"Clean" tracking URLS

Search Engine Optimization Discussion about SEO/Search Engine Optimization (alt.internet.search-engines)


Discuss "Clean" tracking URLS in the Search Engine Optimization forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Emme
 
Posts: n/a

Default "Clean" tracking URLS - 06-14-2005 , 02:29 AM






Hi,

Just reopening the use of tracking URLs . . .

I have seen posted around on the net that crawlers ignore the text that
appears after a hash/pound (#) sign in a URL. Has anyone tried linking to a
site using a URL similar to:

Clean URL - http://www.mysite.com/products/product1.html

URL with tracking - http://www.mysite.com/products/product1.html#0001

Does this count as a direct link? Could you see any reason why this wouldn't
work, assuming that you had some server-side craziness that counted these
URLs in a meaningful way. Actually . . . can you use Apache to
redirect/log/take action based on the presence of something in the request
URI?

Come on nerds, give it to me.

Em




Reply With Quote
  #2  
Old   
Chris Hope
 
Posts: n/a

Default Re: "Clean" tracking URLS - 06-14-2005 , 02:46 AM






Emme wrote:

Quote:
Just reopening the use of tracking URLs . . .

I have seen posted around on the net that crawlers ignore the text
that appears after a hash/pound (#) sign in a URL. Has anyone tried
linking to a site using a URL similar to:

Clean URL - http://www.mysite.com/products/product1.html

URL with tracking - http://www.mysite.com/products/product1.html#0001

Does this count as a direct link? Could you see any reason why this
wouldn't work, assuming that you had some server-side craziness that
counted these URLs in a meaningful way. Actually . . . can you use
Apache to redirect/log/take action based on the presence of something
in the request URI?

Come on nerds, give it to me.
That's not a form of tracking and won't even appear in your web logs or
to server sided scripting.

It's a link to a named anchor somewhere in your page. If you have a
named anchor called 0001 (eg <a name="0001">) somewhere in your page,
then when the page is loaded the browser will jump down to it.

--
Chris Hope | www.electrictoolbox.com | www.linuxcdmall.com


Reply With Quote
  #3  
Old   
Emme
 
Posts: n/a

Default Re: "Clean" tracking URLS - 06-14-2005 , 02:52 AM




"Chris Hope" <blackhole (AT) electrictoolbox (DOT) com> wrote

Quote:
I have seen posted around on the net that crawlers ignore the text
that appears after a hash/pound (#) sign in a URL. Has anyone tried
linking to a site using a URL similar to:

Clean URL - http://www.mysite.com/products/product1.html

URL with tracking - http://www.mysite.com/products/product1.html#0001

Does this count as a direct link? Could you see any reason why this
wouldn't work, assuming that you had some server-side craziness that
counted these URLs in a meaningful way. Actually . . . can you use
Apache to redirect/log/take action based on the presence of something
in the request URI?

That's not a form of tracking and won't even appear in your web logs or
to server sided scripting.

It's a link to a named anchor somewhere in your page. If you have a
named anchor called 0001 (eg <a name="0001">) somewhere in your page,
then when the page is loaded the browser will jump down to it.
Hey Chris, yep I know it's an anchor . . . but I didn't realise that it
didn't make it to the web server. I was hoping I could write up a script
that would scour log files for it, but I see that's out of the question.

I'm trying to avoid the use of javascript to redirect the URL, or to use a
server side redirection script for logging clicks. It needs to be as
accurate as possible (Ha!) as it'll be used for billing.

Any other ideas?

Em




Reply With Quote
  #4  
Old   
Chris Hope
 
Posts: n/a

Default Re: "Clean" tracking URLS - 06-14-2005 , 03:01 AM



Emme wrote:

Quote:
"Chris Hope" <blackhole (AT) electrictoolbox (DOT) com> wrote in message
news:d8lufk$ub8$1 (AT) lust (DOT) ihug.co.nz...
I have seen posted around on the net that crawlers ignore the text
that appears after a hash/pound (#) sign in a URL. Has anyone tried
linking to a site using a URL similar to:

Clean URL - http://www.mysite.com/products/product1.html

URL with tracking -
http://www.mysite.com/products/product1.html#0001

Does this count as a direct link? Could you see any reason why this
wouldn't work, assuming that you had some server-side craziness
that counted these URLs in a meaningful way. Actually . . . can you
use Apache to redirect/log/take action based on the presence of
something in the request URI?

That's not a form of tracking and won't even appear in your web logs
or to server sided scripting.

It's a link to a named anchor somewhere in your page. If you have a
named anchor called 0001 (eg <a name="0001">) somewhere in your page,
then when the page is loaded the browser will jump down to it.

Hey Chris, yep I know it's an anchor . . . but I didn't realise that
it didn't make it to the web server. I was hoping I could write up a
script that would scour log files for it, but I see that's out of the
question.

I'm trying to avoid the use of javascript to redirect the URL, or to
use a server side redirection script for logging clicks. It needs to
be as accurate as possible (Ha!) as it'll be used for billing.

Any other ideas?
You want it like this:
http://www.mysite.com/products/product1.html?foo=bar
OR
http://www.mysite.com/products/product1.html?foo

If all you're going to do is look through the log files then you don't
need to do anything other than the above, otherwise you'd need some
sort of scripting language (eg perl, php, vbscript, coldfusion etc) in
there working with the variables passed in as part of the url and doing
something nifty behind the scenes.

--
Chris Hope | www.electrictoolbox.com | www.linuxcdmall.com


Reply With Quote
  #5  
Old   
Emme
 
Posts: n/a

Default Re: "Clean" tracking URLS - 06-14-2005 , 03:18 AM




"Chris Hope" <blackhole (AT) electrictoolbox (DOT) com> wrote

Quote:
Emme wrote:


"Chris Hope" <blackhole (AT) electrictoolbox (DOT) com> wrote in message
news:d8lufk$ub8$1 (AT) lust (DOT) ihug.co.nz...
I have seen posted around on the net that crawlers ignore the text
that appears after a hash/pound (#) sign in a URL. Has anyone tried
linking to a site using a URL similar to:

Clean URL - http://www.mysite.com/products/product1.html

URL with tracking -
http://www.mysite.com/products/product1.html#0001

Does this count as a direct link? Could you see any reason why this
wouldn't work, assuming that you had some server-side craziness
that counted these URLs in a meaningful way. Actually . . . can you
use Apache to redirect/log/take action based on the presence of
something in the request URI?

That's not a form of tracking and won't even appear in your web logs
or to server sided scripting.

It's a link to a named anchor somewhere in your page. If you have a
named anchor called 0001 (eg <a name="0001">) somewhere in your page,
then when the page is loaded the browser will jump down to it.

Hey Chris, yep I know it's an anchor . . . but I didn't realise that
it didn't make it to the web server. I was hoping I could write up a
script that would scour log files for it, but I see that's out of the
question.

I'm trying to avoid the use of javascript to redirect the URL, or to
use a server side redirection script for logging clicks. It needs to
be as accurate as possible (Ha!) as it'll be used for billing.

Any other ideas?

You want it like this:
http://www.mysite.com/products/product1.html?foo=bar
OR
http://www.mysite.com/products/product1.html?foo

If all you're going to do is look through the log files then you don't
need to do anything other than the above, otherwise you'd need some
sort of scripting language (eg perl, php, vbscript, coldfusion etc) in
there working with the variables passed in as part of the url and doing
something nifty behind the scenes.
Aha! But here we come to the crux of my problem!

I want to be able to track a number of URLs across a number of sites (as I'm
being charged!). A few of these sites have significant page rank, which I
would like to benefit from.

As I understand it, if the links that appear on these big sites look like
this:

http://www.mysiste.com.au/products/p...l?foo=bigsiteA
http://www.mysiste.com.au/products/p...l?foo=bigsiteB

these will be treated as separate URLs by ol' Googley Eyes and thus I will
not benefit from referred PageRank as much as if they linked to the URLs as
just http://www.mysiste.com.au/products/product1.html. In other words, my
IBLs will be FUBAR.

Am I making sense? I have been accused of speaking in random tongues before.
But then you're a Kiwi, so you should catch on, bro.









Reply With Quote
  #6  
Old   
John Bokma
 
Posts: n/a

Default Re: "Clean" tracking URLS - 06-14-2005 , 10:16 AM



Emme wrote:

301 redirect all to product1.html

--
John Perl SEO tools: http://johnbokma.com/perl/
Experienced (web) developer: http://castleamber.com/
Get a SEO report of your site for just 100 USD:
http://johnbokma.com/websitedesign/seo-expert-help.html


Reply With Quote
  #7  
Old   
www.1-script.com
 
Posts: n/a

Default Re: "Clean" tracking URLS - 06-14-2005 , 12:44 PM



Emme wrote:


Quote:
Hi,

Just reopening the use of tracking URLs . . .

I have seen posted around on the net that crawlers ignore the text that
appears after a hash/pound (#) sign in a URL. Has anyone tried linking
to a
site using a URL similar to:

Clean URL - http://www.mysite.com/products/product1.html

URL with tracking - http://www.mysite.com/products/product1.html#0001

Does this count as a direct link? Could you see any reason why this
wouldn't
work, assuming that you had some server-side craziness that counted
these
URLs in a meaningful way. Actually . . . can you use Apache to
redirect/log/take action based on the presence of something in the
request
URI?

Come on nerds, give it to me.

Em
The answer depends on what is it that you are trying to achieve with the
tracking: are you trying to just count the clicks or you want to count
them AND receive the PR benefit of a straight links?

I have a feeling you are looking for the latter. In this regard, crawlers
do not ignore anything! They simply follow to
http://www.mysite.com/products/product1.html#0001, and if that page
happens to reply OK, it will get indexed as ...product.html%230001. In
terms of PR is a different page from ...product.html, so no benefit here.


Sincerely,
Dmitri
http://www.1-script.com/install/
Check out my CGI scripts installation offer
-------------------------------------

##-----------------------------------------------#
Article posted with Web Developer's USENET Archiv
http://www.1-script.com/forum
no-spam read and post WWW interface to your favorite newsgroup -
alt.internet.search-engines - 8996 messages and counting
##-----------------------------------------------##


Reply With Quote
  #8  
Old   
Emme
 
Posts: n/a

Default Re: "Clean" tracking URLS - 06-14-2005 , 09:57 PM




"www.1-script.com" <info_at_1-script_dot_com (AT) foo (DOT) com> wrote


Quote:
Clean URL - http://www.mysite.com/products/product1.html

URL with tracking - http://www.mysite.com/products/product1.html#0001

The answer depends on what is it that you are trying to achieve with the
tracking: are you trying to just count the clicks or you want to count
them AND receive the PR benefit of a straight links?

I have a feeling you are looking for the latter. In this regard, crawlers
do not ignore anything! They simply follow to
http://www.mysite.com/products/product1.html#0001, and if that page
happens to reply OK, it will get indexed as ...product.html%230001. In
terms of PR is a different page from ...product.html, so no benefit here.
Dear Dmitri,

God bless you. That's exactly what I meant. But damn your eyes for
confirming my suspicions.

Back to the drawing board . . .

Em






Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.