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
This should work:
RewriteEngine On
RewriteRule ^(.*) http://newdomain.com/$1 [R=301]
It will redirect all pages from the old website to the new website.
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]