my main page (index.php) file loads fine but all other pages throw a 404.
I suspect that it's the way the URLs are handled. index.php/HomePage tries to find the directory HomePage inside the directory index.php instead of passing HomePage to index.php file. Any clues on how to fix this?
In case all else fails, is there a way to bypass this e.g. index.php?page=HomePage instead of the above approach so atleast I can use mod rewrite to work around it.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
my main page (index.php) file loads fine but all other pages throw a 404.
I suspect that it's the way the URLs are handled. index.php/HomePage tries to find the directory HomePage inside the directory index.php instead of passing HomePage to index.php file. Any clues on how to fix this?
In case all else fails, is there a way to bypass this e.g. index.php?page=HomePage instead of the above approach so atleast I can use mod rewrite to work around it.