I have a quick question.
So I have my rule, which is;
RewriteRule ^([a-z0-9\-\/]+)/?$ index.php?requested_page=$1 [NC,L] # Handle requests.
How do I change this to forward any get data to the pages that get requested? Index.php is a template basically, that pulls in data from other pages depending on which URL is requested. The template is basically as follows;
$sitePageHashMap = array(
"home" => "home",
"pretty-link" => "pagename",
"pretty-link" => "pagename",
"pretty-link" => "pagename"
);
Thanks,
Harry