hai all,
i want to rewrite url in myproject. the actual url is http://test.com/cat_product.php?cid=2 i want this url change to http://test.com/cat_product.php how do i write .htaccess file.
i tried like this
<FilesMatch "\.(htm|html)$">
SetHandler application/x-httpd-php
</FilesMatch>
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^cat_product-([0-9]+)\.php$ cat_product.php?cid=$1
</IfModule>
but it is not working , please any one have idea help me.
thnks.