Heya Derek,
You should be able to achieve this just by messing around with the Apache configuration a bit. If you haven't already set up virtual hosting, you should do that now. The guide
here may be helpful if you run into any trouble following the instructions below:
If you haven't already set up virtual sites, then presumably you are currently using the 000default site for everything (that is to say, currently both the li375-xx.members.linode.com and the mydomain.com sites will be using the 000default site config in apache). This is fine, and we can create a new virtual site just for li375-xx.members.linode.com which will forward to the default site. To do this you'll need to do something along the lines of...
cd /etc/apache2/sites-available/
touch li375-xx.members.linode.comAt this point, edit the content of /etc/apache2/sites-available/li375-xx.members.linode.com (you can use
nano li375-xx.members.linode.com) and set it to the following:
Code:
<VirtualHost *:80>
ServerName li375-xx.members.linode.com
Redirect 301 / http://mydomain.com/
</VirtualHost>
Save the file, and then add the site to apache and reload apache:
a2ensite li375-xx.members.linode.com
/etc/init.d/apache2 reloadThat should sort you out. Give a shout if you run into any problems. I've made a few assumptions about the way you have things set up at the moment, so it may not work 100%.
Best!