Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Anyone have a solution for 301 permanent redirects for deleted products in Magento?

I have a store with 5000 products. 4000 have been sold and will never be back in stock. I want to delete those products b/c I no longer need them and want to clean up/decrease my database, but I need to 301 permanently redirect them to appropriate pages to keep the SEO juice I've built up.

To be clear, I do not want the deleted product pages to be live any more, not even with an Out of Stock message, and I do not want 404 Page Not Founds.

Ideally, I would be able to export the product URL and its lowest-level category page's URL so that I could create 301 redirects via an .htaccess file. But exporting from Magento only exports category IDs, not category names or URLs, so how do I get these programmaticly? Or other solution to this?

share|improve this question

1 Answer

I would create a plugin that leverages observers and Magento's URL Rewrite Manager.

This plugin would observe the catalog_controller_product_delete event which returns array(’product’ ⇒ $product) to the Observer's $event var upon product delete - this would create automatic redirects upon deletion.

You can use this to get last-minute details about the product, including its url, and then do the following to insert into the url rewrite:

Mage::getModel('core/url_rewrite')
    ->setIsSystem(0)
    ->setStoreId($storeId)   
    ->setOptions('RP')  //301 redirect perm
    ->setTargetPath($product->getUrlPath() . '.html')
    ->setRequestPath($newpage->getUrlPath() . '.html')
    ->save();
share|improve this answer
Sounds like a good technique to create a rewrite just before deleting. But how do we get the products' category URL for the rewrites? – Joe Fletcher May 1 '12 at 18:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.