I want to move my blog to a new domain with a more suitable name. The blog has posts already (not many, perhaps 30) and some of the posts have many incoming links. I want to preserve the structure when moving, so that the deeplinks can make their way to the post instead of pointing to the root of the new domain. RewriteRule ^(.*)$ http://www.NewDomain.com/$1 [R=301,L] Is this the proper 301? or I need to do it page by page?