please help me rewrite URL by .htaccess
http://www.domain.com/door?door=casement-doors
to
http://www.domain.com/door/casement-doors.
Try this in your htaccess :
RewriteEngine on
RewriteCond %{QUERY_STRING} ^door=([^&]+) [NC]
RewriteRule ^door /door/%1? [NC,L,R]