Services Required For 301 Redirects

Let me explain what I need and if you are capable of helping us out.

Our old webstore was based on a coldfusion markup language, commonly known as cfml and not php (incasu CS Cart)

I am trying to repair the backlinks by implementing a proper 301 redirect.

I run WHM - Cpanel and thus I have the new, well actually existing webstore running on one Cpanel account and the old cfml webstore is now defunct but I have recreated the domain and hosting account on another Cpanel account.

All backlinks to www.oldstore_url.com/index.cfm?fuseaction=product.display&product_ID=67&ParentCat=100

and all other dispatches originated originally from this coldfusion store should be redirected to various other product pages and or blog posts in the cs-cart store.

I truly need some assistance with this.

Yours truly,

Anthony

Try to use 301 redirect in .htaccess. Something like

RewriteCond %{QUERY_STRING} ^product_ID=229
RewriteRule ^.*$ /your_blog_post.html [R=301,L]

Try to use 301 redirect in .htaccess. Something like

RewriteCond %{QUERY_STRING} ^product_ID=229
RewriteRule ^.*$ /your_blog_post.html [R=301,L]

Thanks guys, I will try that one.

Thanks guys, I will try that one.

Nope this did not work for me.

Nope this did not work for me.

Search in Google for real examples. The provided code was not tested, it is just an idea.