Hi, I have a content site that spreads across multiple pages but there is only 1 index.php file which retrieves the data from the database based on the page no.
Currently the url direction has to be something like domainname.com/Page/content.php?page=3
I have noticed, quite a few sites have directory like structure for the urls like:
domainname.com/Page/3
I know how to change it to domainname.com/Page/?page=3
but I am looking to remove the ?page
part.
How can I do this, without individually creating a directory for each page, the content keeps growing, hence changes for each page.
Thanks