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:
Anonymous
-
2003-05-23
Ok I realize that index.php?pagename=MyPage and index.php?MyPage will both load MyPage, but I still can't get index.php/MyPage to load MyPage. What changes do I need to make in order to accomplish this? (I have access to .htaccess and can request admin to make changes if neccessary)
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.
Ok I realize that index.php?pagename=MyPage and index.php?MyPage will both load MyPage, but I still can't get index.php/MyPage to load MyPage. What changes do I need to make in order to accomplish this? (I have access to .htaccess and can request admin to make changes if neccessary)
Ideally, I want to be able to access MyPage through http://domain.com/wiki/MyPage