I have this kind of URL:
http://dev.myproject.local/index.php?route=product/category/feature
and I want to be like this:
http://dev.myproject.local/featurepage
I have this in my htaccess
RewriteEngine On
RewriteRule ^index.php?route=product/category/feature$ /featurepage/ [L]
But it's not working.