Hi Guys,
I am quite new to PHP and just getting started with mod_rewrite. I know the basic lingo but come stuck when I want to simply refer to the route directory
i.e. this is not probs
RewriteRule ^settings/$ settings.php [QSA,L]
But how to for example make:
RewriteRule ^page/(.*)$ index.php?Page=$1 [QSA,L]
which generates /page/[page-name]
Just become
/[page-name]
?