First question, here goes nothing...
I'm trying to add a new entry to my .htaccess file (Apache server) with the hopes of translating this URL:
http://platform.localhost/category.all
into this URL:
http://platform.localhost/index.php?page=category.all
The RewriteRule that I'm currently using is this:
RewriteRule ^([^/\.]+)\/?$ index.php?page=$1
This rule has worked fine for all URLs up until now, I can only assume that it is the period that is breaking it.
What I'm trying to achieve is having anything in the URL after the "http://platform.localhost/" passed into the "page" variable of index.php.
I know I've missed something stupid, can someone please be kind enough to point it out?
Cheers