Developer forum

Forum » CMS - Standard features » SEO friendly requirements

SEO friendly requirements

Adrian Ursu
Reply

Hello guys,

I have a client that hired an external SEO consultant that came with a set of mandatory recommendations for the webshop.

Some of them are pretty doable but some of them are a bit out of the regular functionality.

They are requiring to have the filters separated with / instead of passing them in URL.

Meaning http://shopurl.com/categoryname/filters/{price_value}/{manufacturer}/{variant_color}/ instead of http://shopurl.com/categoryname?price={price_value}&manufacturer={manufacturer}&variant={variant_color}

Also, they have required that all category URL's to be ended with trailing slash: http://shopurl.com/categoryname/subcategoryname/ instead of the default http://shopurl.com/categoryname/subcategoryname

Any solution to accomplish this?

Thanks,

Adrian


Replies

 
Nicolai Høeg Pedersen
Reply

Hi Adrian

Ah, SEO experts... I wonder where they dig up their 'knowledge'. Anyways, her goes.

For the filtering URLs, you can write a url provider based on the data in the index. Parameters for the left hand side, and all the values from the facets on the right hand side. You need to query the entire index on each of the parameters and keep track of which fields they search and which values are available. Not an easy task. See http://developer.dynamicweb.com/downloads/documentation.aspx, look for the URL providers document. An alternative is to use IIS url rewriting engine. See IIS docs for doing that.

Regarding the trailing slash, you cannot do change it - DW 301s to the version without the trailing slash.

According to Google it really does not matter if it one or the other: http://googlewebmastercentral.blogspot.dk/2010/04/to-slash-or-not-to-slash.html​. You could even share the same content in the version with and without the trailing slash, and it would be "a-okay" (Googles wording).

BR Nicolai

 
Adrian Ursu
Reply

Hi Nicolai,

Yeah, SEO experts. They have to make a living somehow.

That filtering URL's it's a total bogus but I need to find a way to do it because their current ecommerce solution already does it.

Thanks for your suggestions. i was afraid I was gonna end up developing a URL provider.

Adrian

 

You must be logged in to post in the forum