Reputation: 1125
I have a URL http://www.domain.com/products.php?cat=women-clothing-tops
and want to re-write it to http://www.domain.com/women-clothing-tops
, how do I go about this? Is it just a URL re-write or there are other things I need to do to get it re-written?
Upvotes: 0
Views: 141
Reputation: 143946
Try adding these rules to the htaccess file in your document root:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z0-9-]+)$ /products.php?cat=$1 [L]
Upvotes: 1
Reputation: 1
if apache server
.htaccess
update
Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . products.php
Upvotes: 0