I\'m trying to figure out how to do an apache mod_rewrite to remap $_GET.
mod_rewrite
$_GET
What I\'m trying to accomplish:
Currentl
You could try this:
RewriteRule ^/([a-z0-9_-]{1,40})/?$ index.php?URL=pages/$1.php
Though ideally you might want to get rid of the "pages/" part of the query string variable, as this fixed constant could be handled by the index.php script.