_getUrl
カスタムモジュールで作成したトップリンクをリンクする機能を使っているのですが、なぜかURLが重複してしまいます。たとえば、次のリンクにリンクさせたいとします。
www.localhost.com/magento/sapna/account/index
代わりに、次のように表示されます。
www.localhost.com/magento/http://index/www.localhost.com/magentosapna/account/index
これが私の機能です:
const ROUTE_FORM = 'sapna/account/index';
/**
* Retrieve goomer/breeder registariion url
*
* @return string
*/
public function getLoginUrl(){
return $this->_getUrl(self::ROUTE_FORM, $this->getLoginUrlParams());
}
私はmodule/Helper/Data.phpでやっていますが、getUrlを使用していますが機能しません
これを Data.php ヘルパー ファイルに書きました。誰でも助けることができますか?私はこれを何度も経験してきましたが、何が悪いのかわかりません。