When I go to detail, I overwrite the menu links and get an error.
route
$routes->group('(en|tr)', ['namespace' => 'App\Controllers\Frontend'], function ($routes) {
$routes->get('announcement-detail/(:any)', 'Home::announcementDetail/$1/$2');
detail link
<a href="announcement-detail/<?= $key['yazi_id']; ?>"
>
url error
CodePudding user response:
you need to configure your url like this
<a href="<?= base_url('announcement-detail') ?>/<?= $key['yazi_id']; ?>">