Community Growth Web Notes

Documenting Notes about how I discover that things work:

How to set up a redirect for a domain name using .htaccess file
per HostMySite:

https://solutions.hostmysite.com/index.php?/Knowledgebase/Article/View/8805/0/how-to-configure-redirects-via-an-htaccess-file

RewriteEngine on
RewriteCond %{HTTP_HOST} ^olddomain.com [NC,OR]
RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC]
RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301,NC]