magento不同店面,分类、产品url不同

magento默认的是分类和产品的URL key设置是global,也就是唯一的,现在需要改变使其可以在不同店面而不同
SELECT * FROM eav_attribute WHERE attribute_code LIKE '%url_key%';
结果
479 9   url_key NULL    catalog/category_attribute_backend_urlkey   varchar         text    URL key  
481 10  url_key NULL    catalog/product_attribute_backend_urlkey    varchar         text    URL key
接下来
SELECT attribute_id, is_global FROM catalog_eav_attribute WHERE attribute_id=479;
is_global结果是1,改变为0
UPDATE catalog_eav_attribute SET is_global='0' WHERE attribute_id=479;

你可能感兴趣的:(Magento,magento数据)