我会得到图片网址:mysite / img / test.png
但是我收到了这个链接:mysite / posts / test.png
<?php echo $this->Html->link(
$this->Html->image($post['Post']['image']),
$post['Post']['title']),
array('escape' => false)
);
?>
我必须以另一种方式获取网址?
答案 0 :(得分:0)
编辑:
如果您想要链接到您的图片,可以这样做。
<?php echo $this->Html->link(
$this->Html->image($post['Post']['image']),
$this->Html->url('/img/'.$post['Post']['image']),
array('escape' => false)
);
?>
或
<a href="<?php echo $this->Html->url('/img/'.$post['Post']['image']); ?>">
<?php echo $this->Html->image($post['Post']['image']); ?>
</a>