Right now I have this code: Options +FollowSymLinks RewriteEngine on RewriteRule p(.*)\.php$ /games.php?ID=$1 Code (markup): Which works, but I need another page gamecat.php?ID=1 to redirect to c[IDHERE].php also. I tried: Options +FollowSymLinks RewriteEngine on RewriteRule p(.*)\.php$ /games.php?ID=$1 RewriteRule c(.*)\.php$ /gamecatphp?ID=$1 Code (markup): But the two conflicted with each other. How can I solve this? Thanks