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.