有没有办法让 Smarty在使用模板继承时将src & href属性值转换为正确的 URL
例子:
文件:web/tpl/layout.tpl
<img src="../img/logo.png" />
{block name=content}{/block}
文件:index.tpl
{extends file="web/tpl/layout"}
{block name=content} home page content here{/block}
文件:dir/index.tpl
{extends file="../web/tpl/layout"}
{block name=content} an other page content here{/block}