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  |  Print Page




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 »
7,572 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
Mar 22, 2010 at 10:20 AM
POIUtility.cfc Examples For Reading And Writing Excel Files In ColdFusion
Can you please show me how to write to multiple sheets of a workbook? Thanks for your cool cfc. Khoa. ... read »
Lee
Mar 22, 2010 at 10:08 AM
Javascript's Implicit Boolean Conversions
I would certainly still use if(strValue.length > 0) over if(strValue) simply because I believe it makes the code more self-documenting. Not everyone knows that an empty string evaluates to false. ... read »
Mar 22, 2010 at 7:43 AM
Terms Of Service / Privacy Policy Document Generator
Thankyou for this very helpful form. You've made my life much easier today. I'll have a look around your site... I'm sure there's some more good stuff here..Thanks Dave ... read »
Mar 22, 2010 at 7:21 AM
Encountered "(. Incorrect Select Statement, Expecting a 'FROM', But Encountered '(' Instead, A Select Statement Should Have a 'FROM' Construct.
I got this exception now. In case you're using var-es local struct, CF gives you couple of "new" exceptions: Encountered "local. and Encountered "id. Incorrect Select List, Incorrect select colum ... read »
Mar 22, 2010 at 3:08 AM
Ask Ben: Selecting XML Attributes Given Other XML Attributes
Thanks for the response. I finally discovered that I was getting this error because I had cfsetting enablecfoutputonly="yes" in Application.cfc, and was neither setting it to false elsewhere nor brac ... read »
Mar 21, 2010 at 8:57 PM
The Bourne Ultimatum Starring Matt Damon And Julia Stiles
late to the party, but my observation is this: rewatch carefully for the platonic nature of the relationship between nicki and jason. she never flirts with him. he never comes on to her. they alway ... read »
Mar 21, 2010 at 7:40 PM
Is Simulating User-Input Events With jQuery Ever A Good Idea?
A couple of things. One you embed the initial state of of more-info in the CSS. IMHO, that behavior should be in jQuery: moreInfo.hide(); It shows that the behavior your toggling and closing is mor ... read »
Mar 21, 2010 at 3:59 PM
Exploring ColdFusion Component Runtime Class Properties And Serialization
@Elliott, according to Ben's experiment, serializeJSON() doesn't access the private data by default - it doesn't even access the getHair() method - so trying to clone a Girl.cfc via serializeJSON/des ... read »