My index page's URL can contain multiple different variables, like:
index.php?page=page1
index.php?page=page2
index.php?page=page3
index.php?page=page4
How would I use .htaccess to shorten these URLs so that they look like this:
index.php/page1
index.php/page2
index.php/page3
index.php/page4
Thanks.