Dhawal Mhatre
Dhawal Mhatre

Reputation: 435

Rewriting URL using HTACCESS for category name

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

Answers (1)

Amit Verma
Amit Verma

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

Related Questions