Reputation: 435
I want to rewrite the URL using htaccess... for converting below URL
TO
I don't want to write category in url, I am using below code but no use
RewriteRule ^(.*)/ category.php?id=$1
RewriteRule ^(.*) category.php?id=$1
Upvotes: 0
Views: 782
Reputation: 41219
You need to use a RewriteCond to manipulate query strings.
RewriteEngine on
RewriteCond %{THE_REQUEST} /category\.php\?id=([^\s&]+) [NC]
RewriteRule ^ /%1? [NE,L,R]
Upvotes: 1