Question

I am using this link in my static CMS block

<a href="{{store_url='produkte/insektenschutz/fenster/spannrahmen.html'}}">

but it renders as https://www.mysite.de/produkte/insektenschutz/fenster/

Why is spannrahmen.html cut off?

Était-ce utile?

La solution

Add store direct_url instead of store_url

<a href="{{store direct_url='produkte/insektenschutz/fenster/spannrahmen.html'}}">

spannrahmen.html will show after this.

Autres conseils

Try adding this to your block:

<a href="{{store direct_url="produkte/insektenschutz/fenster/spannrahmen.html"}}">Link to Base URL</a>
Licencié sous: CC-BY-SA avec attribution
Non affilié à magento.stackexchange
scroll top