我想改變客戶登錄和賬戶網址改變客戶登錄網址
當前的URL是http://www.store.com/customer/account/login/
我想這個http://www.bandenmatch.nl/account/
我創建了一個CMS頁面,並加載登錄改變該網頁的工作正常,但它仍然可見當客戶登錄
$redirect_url = Mage::getUrl('customer/account/login/');
$current_url = Mage::helper('core/url')->getCurrentUrl();
if((!$this->helper('customer')->isLoggedIn()) && ($current_url != $redirect_url)){
Mage::app()->getFrontController()->getResponse()->setRedirect($redirect_url);
}