Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我现在正在检查/测试软件。要检查它是否正常工作,我必须使用带有出站链接的现有网站。我有另一个用 cakephp 编码的网站。在这个网站中,我必须放置一个锚文本来指向另一个网站,即出站链接。这将用于检查软件是否正常工作。你能帮我如何在 cakephp 中添加出站链接,我是新手。谢谢!
您可以通过这种方式使用 Html Helper 放置链接:
<?php echo $this->Html->link('Site Name', 'http://www.example.com'); ?>