如何删除商店特定 url 重写?
How to delete store specific url rewrite?
我正在使用以下内容删除 url 重写
Mage::getModel('core/url_rewrite')->loadByRequestPath($requestPath)->delete();
如何使其仅特定于商店?
我做了以下操作以达到要求:
$storeId = 2;
Mage::getModel('core/url_rewrite')->setStoreId($storeId)
->loadByRequestPath($requestPath)->delete();
我正在使用以下内容删除 url 重写
Mage::getModel('core/url_rewrite')->loadByRequestPath($requestPath)->delete();
如何使其仅特定于商店?
我做了以下操作以达到要求:
$storeId = 2;
Mage::getModel('core/url_rewrite')->setStoreId($storeId)
->loadByRequestPath($requestPath)->delete();