Search Engine Optimization (SEO): Revisiting

Posted April 25, 2006 at 2:37 PM

Tags: ColdFusion, Search Engine Optimization

I have been playing around with the Urls that I use internally to the site. Some links have been using search engine optimized links (like ./snippets/) and some use the DAX (Divide and Conquer, like "?dax=blog.search"). At first it seemed that Google was not indexing the dynamic DAX pages (while Jeeves, Yahoo, and other search engines where); however, in the past few weeks, I have noticed that, while not often, Google does in fact make it's way to parts of the dynamic sections.

So, should I keep using the nice Urls? They add overhead to the page processing time. They also potentially create a bottle neck in the site since they all go through the error handler. But then again, so do links with the "index.cfm?dax=" format. I do like the look of the nice links and they certainly make tracking web stats much easier as they are unique pages instead of unique query params to the index file.

For now, I will keep them. But I am still building out the site. Who knows where I will optimize going forward.

Post Comment  |  Ask Ben  |  Permalink  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

May 11, 2006 at 4:05 AM // reply »
1 Comments

Not true, it is possible in various circumtsances....


Jul 10, 2007 at 11:10 PM // reply »
4 Comments

They all index regular application pages with ? etc. But it is much easier for crawlers to index SEF URLs.

Thanks


Jan
Aug 15, 2007 at 8:45 AM // reply »
6 Comments

Just check my name's link... Completely dynamic. Google now reads many types of links including those which contain spaces and national encoding characters.

I was thinking about rewriting urls for seo purpose but I realised that it is not worth it. What exists and works well, shouldn't be touched in my opinion. I achieved very good rankings for my site with dynamic URLs and without keywords within the URL.

On the other hand it caused me few problems thanks to lack of knowledge in the beginning. If you replace two variables and their values, the browser will give you the same content in both cases, however Google considers them to be 2 different URLs... Fortunately, I fixed it few weeks ago :) .


Aug 15, 2007 at 9:55 AM // reply »
6,516 Comments

@Jan,

Glad that the dynamic URLs are working for you. I have not dealt too much the pros / cons, but I have heard that dynamic URLs are not ranked as well. Good that it works for you, though :)


Jan 15, 2009 at 1:02 AM // reply »
1 Comments

It is seen that dynamic URL are not search engine friendly and there may be problem with regular crawling of site..


Tom
May 19, 2009 at 6:43 AM // reply »
1 Comments

Google do crawl both the links but if from SEO perspective you want to rank your page for that particular keyword so its better using the keyword in URL that's why these nicely named website get ranked well instead of the dynamic one. Dynamic one also do rank but according to there content and traffic.It's preferable using keywords for the URL as they will help you for SERP.


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 21, 2009 at 1:13 PM
My First ColdFusion Builder Extension - Encrypting And Decrypting CFM / CFC Files
@Ben, Because I am pedantic, I just want to make sure that everyone knows there is absolutely no encryption going on. There is only encoding and obfuscation. The cfencode tool only obfuscates your C ... read »
Nov 21, 2009 at 12:28 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jody I can't seem to get your code sample to work. If you are still having problems, try this code out and see if it gets you what you wanted. <!--- Comma delimited list with various duplicates ... read »
Nov 21, 2009 at 11:03 AM
Groovy Operator Overloading Does Not Work In The ColdFusion Context
Hi Ben, Thanks for this informative post. Now I am reading ur old posts too ... read »
Nov 21, 2009 at 10:56 AM
HostMySite.com Has The Best ColdFusion Hosting
@Mehul, Yes very nice people, however several downtimes per day which was not acceptable. Hence we had to move out. I am glad you are having good luck with them so far. ... read »
Nov 20, 2009 at 11:32 PM
Five Months Without Hungarian Notation And I'm Loving It
I've used headless camel case for years for not only ColdFusion variables, but also SQL tables and fields... pretty much everything involving code. I also subscribe to the "don't abbreviate and clea ... read »
Nov 20, 2009 at 11:00 PM
Five Months Without Hungarian Notation And I'm Loving It
@Marcel, Yeah, I always err on the side of longer but more readable variable names. As for the camel casing of CF methods and the headless camel casing of custom items, I get around this by always ... read »
Nov 20, 2009 at 10:56 PM
Five Months Without Hungarian Notation And I'm Loving It
I use the following and love it: my.namespace.MyComponents.functionMethodsOrUDF() CONSTANT_VALUES_OR_PROPERTIES One thing I always try is to CamelCaseBuiltInColdFusionFunctions() so others can tell ... read »