I have used the following url format to build a template site with a fair bit of success:
page.php?content=whatever
The only problem is that with many pages the directory becomes quite messy due to all the content pages being in the same root folder.
Is there a way to keep all the content pages in folders and still access them via a query string? I have tried this before:
page.php?content=about/whatever (where about is a subfolder in the site)
However, no combination of slashes ever seems to work.
Any ideas?