By the way: I'm using a custom MVC pattern which means I do not have a index.html/index.shtml nor index.php. I'm using routes to define which url goes to which controller action. This does mean I can 'route' /index.shtml to for instance the HomeController::Homepage() function. But the actual ssi_in.php include will take place in the homepage.template.php file (right under body). which is parsed and returned in the Homepage() function.
But this should all work right?
Currently I have my homepage setup as '' (blank), and not 'index.html' or 'index.shtml'. Is this wrong..?