Hi Everyone,
I do not want my site to be accessible through it's lixx-yyy.members.linode.com name.
I have tried a Redirect like:
Code:
NameVirtualHost 123.123.123.123:80
<VirtualHost 123.123.123.123:80>
ServerName www.busicorp.com
...
</VirtualHost>
<VirtualHost 123.123.123.123:80>
ServerName lixx-yyy.members.linode.com
Redirect permanent / http://www.busicorp.com/
</VirtualHost>
but this does not work (whereas it does work with ServerName busicorp.com). I suspect this might have to do with the fact that lixx-yyy.members.linode.com actually resolves to a different IP.
How do I block access through these lixx-yyy.members.linode.com hostnames?
More generally, how do I block / redirect everything through one hostname? I don't want to duplicate content and screw up my Google rank.
Mike