我想知道是否有任何方法可以使用根路径而不是硬链接链接到magento中的页面。例如,我没有使用http://dev.southlandautomation.com/index.php/t-automationrepair.aspx/?___store=default,而是使用magento链接到此页面而不使用网址。
答案 0 :(得分:2)
您可以按以下方式获取商店网址:
{{store url=""}}
所以你可以像这样添加链接
{{store url="t-automationrepair.aspx"}}
{{store url=""}}t-automationrepair.aspx
答案 1 :(得分:0)
只要您在CMS Block或页面中,这应该为您提供源
Get Url in cms pages or static blocks
1. Get Base Url :
{{store url=""}} //eg. <a href="{{store url=''}}"
2. Get Skin Url :
{{skin url='images/imagename.jpg'}}
3. Get Media Url :
{{media url='/imagename.jpg'}}
4. Get Store Url :
{{store url='mypage.html'}}