Reputation: 138
I'm trying to rewrite a URL in PHP from example.com/homehub/whatweneed.php?sort=default
to example.com/homehub/whatweneed/sort/default
.
I've got the following code in my .htaccess file:
RewriteEngine On
RewriteRule ^sort/([A-Za-z0-9]+)/?$ ^whatweneed.php?sort=$1 [QSA,PT,L]
It's rewriting the URL to what I want but I can't seem to get any of the variables passed through via $_GET.
Upvotes: 1
Views: 459