Hello community,
I have FURLs turned on, and they work. It's great. But, I don't know how to integrate FURLs with URL query strings such as:
localhost/products/servers/1u-servers?page=1
Ideally I want it to look like:
localhost/products/servers/1u-servers/1
I've read countless articles on modifying the .htaccess to accomplish this, but I've had no luck with it because I am not experienced enough.
So far I have:
RewriteRule ^(.*)/([^.]+)$ index.php?q=$1&page=$2 [L,QSA]
but obviously it doesn't work.