0
votes

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    
1

1 Answers

1
votes

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]