I have the following RewriteRule in my .htaccess:
RewriteRule ^products/([A-Za-z0-9-\s\@]+)/([A-Za-z0-9-\s\@]+)/?$ /store/products/product.php?prod=$1&src=$2 [L,QSA]
It takes a url such as: http://photojojo.com/store/products/lawnmower/blogThatLovesUs
and shows the page here: http://photojojo.com/store/products/product.php?prod=lawnmower&src=blogThatLovesUs
Is there a way I can edit this RewriteRule so that the user just sees http://photojojo.com/store/products/lawnmower/ (sans blogThatLovesUs) in their address bar?