Google Finally Indexed the Site

Posted April 20, 2006 at 9:21 AM

Tags: ColdFusion, Search Engine Optimization

Google finally indexed my site. It was really interesting in terms of the effect on search engine optimization. I finally have confirmation that the Google bot will index my 404-catching type pages (ex. ../porfolio/client-lsit/), which is great because I was afraid my manual setting of 200 status wasn't taking hold.

What I did notice is that of all the pages that were indexed, none of the pages that use the DAX string (ex. index.cfm?dax=blog:4.view) were NOT indexed.

So what to do? Well, I don't want every page on the site to have a pretty URL, or rather I don't want every link to be a pretty URL since it does have some bottle necking as all the pages will be process via my error catcher. I suppose I will have main links be SEO and then once you are in the meat of the site, I can fall back on the faster DAX methodology.

Post Comment  |  Ask Ben  |  Permalink  |  Print Page




Reader Comments

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

These were good times when I was beginning as well :) . My own site was shown in Google about 4 months after launch just because I trusted some questionable SEO tools which delivered "guaranteed" results. Fortunately, now I know that natural content and natural links are better than automated tools...

BTW, you could mention how long did it take until you were indexed by G. I mean the period between launching the site and showing in G's index.


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

Not exactly sure how long. This post was in April, and I think the site started in march or so. So, not too long. But also, I signed up for some RSS feed aggregation and stuff, so that probably helped.


Post Comment  |  Ask Ben

Recent Blog Comments
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 »
Nov 20, 2009 at 5:38 PM
Learning ColdFusion 8: CFImage Part I - Reading And Writing Images
Hi Ben, Great article. I've been looking around to see if ColdFusion image engine can programatically create the following "wrap around" effect: http://www.creativepro.com/article/photoshop-s-she ... read »
Nov 20, 2009 at 5:35 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Dave: I talked to Gert he suggested: <cfhttp method="get" url="http://{some cf website}" result="stuff" addtoken="yes" /> Note the addition of cfhttp attribute addtoken. That should persist y ... read »
Nov 20, 2009 at 5:23 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
@Todd, Ahh, gotcha, yeah that makes sense. ... read »
Nov 20, 2009 at 5:17 PM
Maintaining ColdFusion Sessions Across SMS Text Message Requests Without Cookies
Ben, sorry if I didn't make this clear. You can make it work like that if you want, just put <cfset session.foo = 1> (and <cfset application.foo = 1>) in your OnRequestStart() and it reve ... read »