Got a little mod_rewrite problem that I can't fix here. I used Nintendo's sticky to write my .htaccess file, and the rules work OK, but only whichever rule is listed first works. The second rule won't work. Options +FollowSymLinks RewriteEngine on RewriteBase /destinations/ RewriteRule ^(.*)\.html$ destination.php?d=$1 [L] RewriteRule ^(.*)-(.*)\.html$ subpage.php?s=$1 [L] Code (markup): How do I list several rules in a htaccess file and get them all to work?