Igor Kromin |   Consultant. Coder. Blogger. Tinkerer. Gamer.

Recently I've consolidated hosting for a number of my domains going from 4 hosting accounts down to two, however I decided to still keep all of my domains but have them point to my primary hosting account. This meant that anyone could use one of these old (an unrelated) domains to access my primary blog. This isn't what I wanted because I didn't want the old domains to be associated with my blog.

I had a look at what .htaccess could do for me and it turns out that I could make it send a HTTP 410 Gone response whenever someone tried to access a URL that came from one of the old domains I no longer wanted to serve any content.

Now this will only work if multiple virtual hosts are pointing to the same web host e.g. example1.com is the actual host and example2.com is an alias for that host.

The .htaccess example file will send the 410 response on all requests originating from example.com.
 .htaccess
RewriteEngine On
RewriteBase /
# 410 - Gone on example.com
RewriteCond %{HTTP_HOST} (example.com$) [NC]
RewriteRule ^(.*)$ $1 [L,G]


The ^(.*)$ pattern will match anything and $1 is simply a placeholder in this case since G is used in the options. The L in the RewriteRule specifies that this is the last match that should be considered i.e. no more rules are evaluated if this one matches. The G specifies that the 410 response is to be sent.



-i

A quick disclaimer...

Although I put in a great effort into researching all the topics I cover, mistakes can happen. Use of any information from my blog posts should be at own risk and I do not hold any liability towards any information misuse or damages caused by following any of my posts.

All content and opinions expressed on this Blog are my own and do not represent the opinions of my employer (Oracle). Use of any information contained in this blog post/article is subject to this disclaimer.
Hi! You can search my blog here ⤵
NOTE: (2022) This Blog is no longer maintained and I will not be answering any emails or comments.

I am now focusing on Atari Gamer.