I changed my site domain, and want to redirect old urls to new domain
(note: instead of numbers 93, 54 maybe any digit number exists) the old urls are:
h
If it's just those three you want to redirect, you can do it with an OR in your regex. The below should work.
RewriteEngine On RewriteRule ^/(45|p/93|$)$ http://newdomain.com/$1 [R,L]