I am combining some simple products in our catalog to grouped products. I need to create 301 redirects from the current simple product pages to the new grouped product page.
Here is an example of what I have:
- Products a, b, and c are similar simple products, each with their own url.
- Grouped Product z has a, b and c associated to it.
- Visibility for a, b, and c are changed to "not visible individually."
- Visiting the old link for product c results in a "404 Not Found" error.
I want step 4 to result in a "301 Moved Permanently" with the grouped product url. I know I can change the entries in the URL Rewrites list manually, but I am looking for a more automated approach.
Can anybody help point me in the right direction?
UPDATE:
I have updated the file app/code/local/Mage/Catalog/controllers/ProductController.php with:
protected function _initProduct()
{
$categoryId = (int) $this->getRequest()->getParam('category', false);
$productId = (int) $this->getRequest()->getParam('id');
$params = new Varien_Object();
$params->setCategoryId($categoryId);
$parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($productId);
if(isset($parentIds[0])){
$parent = Mage::getModel('catalog/product')->load($parentIds[0]);
die($parent->getProductUrl());
}
return Mage::helper('catalog/product')->initProduct($productId, $this, $params);
}
I would expect that to kill any simple product page view, but it doesn't. It seems like the product controller is not being called for products set as not visible. Is that correct?
UPDATE 2:
If I modify the "core" file instead of the "local" version, this works. Any ideas on why that is?