Hi Wiredesignz,
Thanks for your quick reply!
If I show a 404 the visitor will see a 404 while I just want CI to ignore the module in the process where CI looks for a module in the modules/ directory based on the uri (don’t know the official term for this :D)
I’ll explain my problem further:
I now have a newly developed module called guestbook in the modules/ directory.
I load this module via a view partial:
<?=Modules::run('controller/method');?>No problems so far…..
Now one of my sites just got a page called guestbook with the following full url:
http://www.mydomain.com/guestbook
Now the problem starts. I use a single controller ‘page’ (module page within the modules/ dir) handling all my requests. While I want CI to load this controller and handle the requests as it would do if I had no module called guestbook it only shows the module (which is set-up as a partial) Normal behaviour but not for me in this set-up 😉
Of course I DO want to load this module this way if I use the view partial method of calling it (and not have CI load the full page guestbook)
Hope I managed to explain it a little, if not feel free to ask for more info 😉