I am using php and in my htaccess file I have the following:
Options +FollowSymLinks
RewriteEngine on
RewriteRule form/(.*)/(.*)/$ /form.php?$1=$2
this changes
winnipegbuyandsell.com/form.php?category=used-cars-trucks
into
winnipegbuyandsell.com/form/category/used-cars-trucks/
How can i rewrite the above htaccess code so the following is also acceptable when typed in by the user:
winnipegbuyandsell.com/form/category/used-cars-trucks
without the trailing backslash
thanks
carole2