I've created 3 custom pages (controller-, php-, and tpl-files) and created entries for SEO & URLs. All custom pages are duplicates at the moment and show the same content.
I have created the links for the custom pages in blocktopmenu.php:
$this->_menu .= '<li><a href="'.$this->context->link->getPageLink('bHome.php').'">Home</a></li>'.PHP_EOL;
$this->_menu .= '<li><a href="'.$this->context->link->getPageLink('bSamples.php').'">Samples</a></li>'.PHP_EOL;
$this->_menu .= '<li><a href="'.$this->context->link->getPageLink('start.php').'">Test</a></li>'.PHP_EOL;
The links are working and the sites are displayed correctly.
My problem is, that only one pages friendly URL is shown and I don't have the slightest idea what the problem could be.
The URL that is working correctly is translated as follows:
http://localhost/Shop/index.php?controller=start -> http://localhost/Shop/Test
My other two pages are not translated:
http://localhost/Shop/index.php?controller=bHome
http://localhost/Shop/index.php?controller=bSamples
Does anybody know what the problem might be?