![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I try to find out how many visitors come to a site from Google Adwords. In case of an hit from AdWords, the log file shows entries like: |
|
but I can't see any difference with entries from 'normal' searches like: |
|
Do I overlook something??? |
#3
| |||
| |||
|
|
Nico Schuyt wrote: I try to find out how many visitors come to a site from Google Adwords. ... but I can't see any difference with entries from 'normal' searches like: Do I overlook something??? No. AFAIK they are identical. Note that referer string is information about the page displayed, not about the link followed on the page. Use some other URL as a landing page for AdWords clients. I have added &from=google1 as a parameter to differentiate between AdWords and organic searches, followed by 301 redirect to not risk duplicate content penalty. |
#4
| |||
| |||
|
|
I try to find out how many visitors come to a site from Google Adwords. ... but I can't see any difference with entries from 'normal' searches like: Do I overlook something??? No. AFAIK they are identical. Note that referer string is information about the page displayed, not about the link followed on the page. Use some other URL as a landing page for AdWords clients. I have added &from=google1 as a parameter to differentiate between AdWords and organic searches, followed by 301 redirect to not risk duplicate content penalty. Good idea, but where/how did you make the 301 redirect? In .htaccess? |
The only drawback of using
#5
| |||
| |||
|
|
I have added &from=google1 as a parameter to differentiate between AdWords and organic searches, followed by 301 redirect to not risk duplicate content penalty. |
#6
| |||
| |||
|
|
I have added &from=google1 as a parameter to differentiate between AdWords and organic searches, followed by 301 redirect to not risk duplicate content penalty. Borek: Please explain... what is the "duplicate content penalty"? |
#7
| |||
| |||
|
|
To avoid the problem you should not display identical content for different URLs. Some argue that it is inevitable in some situations and G is not very rigorous. But even if - better safe then sorry. |
#8
| |||
| |||
|
|
Nico Schuyt wrote: ... where/how did you make the 301 redirect? In .htaccess? My site is in php so it was header("Location: ".$new_url,true,301); |
#9
| |||
| |||
|
|
Borek wrote: Nico Schuyt wrote: ... where/how did you make the 301 redirect? In .htaccess? My site is in php so it was header("Location: ".$new_url,true,301); Thanks again! Never knew you could do that with header() |
#10
| |||
| |||
|
|
"Nico Schuyt" wrote: Borek wrote: Nico Schuyt wrote: ... where/how did you make the 301 redirect? In .htaccess? My site is in php so it was header("Location: ".$new_url,true,301); Thanks again! Never knew you could do that with header() Make sure that $new_url is an absolute one, e.g. http://example.com/foo/bar (and not /foo/bar, or ../bar) |
![]() |
| Thread Tools | |
| Display Modes | |
| |