Magento:"index" 附加到电子邮件模板 url

Magento : "index" append to email template url

Magento 版本。 1.7.0.2

电子邮件模板面临一个问题。

当我使用 <a style="" href="{{store url=''}}">

它给我 o/p 赞

<a style="" href="http://www.domain.com/index.php">

但我想要关注

<a style="" href="http://www.domain.com">

现在如果我添加

<a href="{{store direct_url='service'}}">

它给我 o/p 喜欢

<a href="http://www.domain.com/index.php/service">

但我想关注

<a href="http://www.domain.com/service">

现在如果我添加

<a href="{{store direct_url='service/contact'}}">

它给我 o/p 赞(/index/index 自动附加)

<a href="http://www.domain.com/index.php/service/contact/index/index">

但我想关注

<a href="http://www.domain.com/service/contact">

当我点击 link 时,它将导航到 /service 页面而不是 service/contact 页面。

知道这是怎么回事吗?

以下已完成作业。

{{config path="web/unsecure/base_url"}}

<a href="{{config path="web/unsecure/base_url"}}service"