I'm trying to do two redirects:
1. From IP address to www and
2. From non-www to www
Here is what I have for the first part:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^11\.222\.33\.444
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
What do I add for the non-www to www redirect?
Thanks,
ew