Can anyone help me with .htaccess rewrite url, I am new to it and stuck with this below problem
i have this urls
http://example.com/catelogue.php?page=3
http://example.com/catelogue.php?page=3&cat1=fruit&cat2=apple
and i want this to be
http://example.com/catelogue
http://example.com/catelogue/fruit/apple
Below is my .htaccess file, but here the problem is I have achieved this (example.com/catelogue/fruit/apple) but I can't redirect my url to (example.com/catelogue).
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^home index.php?page=1 [NC,L]
RewriteRule ^catelogue catelogue.php?page=3 [NC,L]
RewriteRule ^catelogue/([^/.]+)/([^/.]+)$ catelogue.php?page=3&cat1=$1&cat2=$2 [NC,L]