Im trying to get a url rewrite to work and Im not getting any where. basically I want to have three pages one for music and then general products and the other for mvies, each will have a query string of &pagetype=general etc but the url would be http://shopnbuy.vacau.com/browse/computers.html?pageType=general which will redirect to general_products.php and then there would music_products and also movie_products. So they all have the same url except there is a different parameter &pageType=. Below is my htaccess file this is my first attempt at doing this\[code\]# Do not remove this line, otherwise mod_rewrite rules will stop workingRewriteBase /RewriteEngine OnRewriteRule ^browse/([a-zA-Z0-9_-])\.html general_products.php?department=$1&pageType=generalRewriteRule ^browse/([a-zA-Z0-9_-])\.html music_products.php?department=$1&pageType=musicRewriteRule ^browse/([a-zA-Z0-9_-])\.html movie_products.php?department=$1&pageType=movieurl suppose to look like thishttp://shopnbuy.vacau.com/browse/computers.html\[/code\]All Im getting is an error for each url rewrite