Hi there,
how can I create absolute links from my CakePHP 4 project to a external web page?
For my internal links, like Nav Bar and so on, I’ve used:
<?= $this->Html->link(
'displayedNameOfTheLink',
['controller' => 'pages', 'action' => 'myPage', '_full' => true]
) ?>
That’s the way from the Cook Book and it’s working well.
I didn’t found descriptions to set an external link…
Regards,
Hubes