[cfaussie] Next QLD CFUG meeting DATE CHANGE, Tuesday 8th August.
The next QLD CFUG meeting, which was previously scheduled to happen tomorrow (Tuesday) night, has been moved to now occur next week on Tuesday the 8th of August. Stay tuned for more details, but expect a special presentation on Search Engine Optimisation, including a special subscription offer for all meeting attendees. We'll also be celebrating Flash's birthday and like all good birthday parties, you'll get the presents. One lucky attendee will get themselves a free, full copy of Adobe Studio, so mark your calendar now and RSVP when the official notice goes out later this week. Regards Darren Tracey CFUG QLD Manager --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: Changing HTTP responses
Ummm... can't you just look at the HTTP_REFERRER header? That'll tell you where people are coming from. If it's "", either they're hitting you from a book mark, or using a referrer blocker (rare). Otherewise, you can tell where they're coming from. If it's from a search engine, you can also tell what they searched for, in the referrer's query string. You don't need to monkey with responses at all. On 7/28/06, Beenish <[EMAIL PROTECTED]> wrote: Hi, I'm pretty sure this can't be done but hoping someone can prove me wrong. I need to track click throughs on a link accurately without it having any url parameters attached to it. It has to be a clean link straight to "http://www.thesitesname.com.au" for the purposes of search engine optimisation. It has been suggested to me to look at a way of changing http responses. So, the link redirects to a page to track a click and then change the http response so that it looks like it never went to the click tracking page and redirect to the "http://www.thesitesname.com.au" as if it was where it was going there in the first place. In a way I'm trying to "fool" the search engine into thinking it's a link straight to "http://www.thesitesname.com.au". I don't see how this can be done. In fact I don't think it can be done. Please prove me wrong and tell me how to do it or else prove me right. Thanks Beenish --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---
[cfaussie] Re: Changing HTTP responses
Beenish, There are 2 things you can do here, but it really depends on what it is you are really trying to do. Charlie offered a solution, but that is to only make the URL SEO friendly, and will still provide a problem to you. My suggestion would be to look into a program called browser hawk, or you could write your own. But its worth spending the money and get something that has already been compiled with all search engines. The idea behind what you want to do is to first decide that whoever is browsing your webpage to see if it is a search engine or not, and to then decide what to do based on that decision. So if it was a search engine, you could deny them access or push them to somewhere else within you're website. So in your case, If(!Searchengine) { Recordclickthrough(); } Location = 'page to relocate too' HTH Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 -Original Message- From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Beenish Sent: Friday, 28 July 2006 12:01 PM To: cfaussie Subject: [cfaussie] Changing HTTP responses Hi, I'm pretty sure this can't be done but hoping someone can prove me wrong. I need to track click throughs on a link accurately without it having any url parameters attached to it. It has to be a clean link straight to "http://www.thesitesname.com.au"; for the purposes of search engine optimisation. It has been suggested to me to look at a way of changing http responses. So, the link redirects to a page to track a click and then change the http response so that it looks like it never went to the click tracking page and redirect to the "http://www.thesitesname.com.au"; as if it was where it was going there in the first place. In a way I'm trying to "fool" the search engine into thinking it's a link straight to "http://www.thesitesname.com.au";. I don't see how this can be done. In fact I don't think it can be done. Please prove me wrong and tell me how to do it or else prove me right. Thanks Beenish --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to cfaussie@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cfaussie -~--~~~~--~~--~--~---