有没有办法让Smarty转换 src & href 在使用模板继承时将值归因于正确的URL
exmple:
file:web / tpl / layout.tpl
<img src="../img/logo.png" />
{block name=content}{/block}
file:index.tpl
{extends file="web/tpl/layout"}
{block name=content} home page content here{/block}
file:dir / index.tpl
{extends file="../web/tpl/layout"}
{block name=content} an other page content here{/block}
答案 0 :(得分:1)
我认为您应该定义基本网址并在src和href中使用它:
<img src="{$baseurl}/img/logo.png" />
{block name=content}{/block}