codewalkz 0 Junior Poster in Training

RewriteEngine on
RewriteRule ^([^/\.]+)/?$ index.php?j=$1 [L]

This makes index.php?j=sample look like http://www.domain.com/sample

Now, i want to except http://www.domain.com/account from the rewrite rule. How can I proceed?

Thanks a lot!