Mobile app version of vmapp.org
Login or Join
Margaret670

: During a domain auction for the .com version of my domain, it redirects to my site I own a web domain that is quite well known in certain circles. The .com of the same name is now being

@Margaret670

Posted in: #Domains

I own a web domain that is quite well known in certain circles. The .com of the same name is now being auctioned off at a price I certainly do to wish to pay.

The person in question is auto redirecting their .com domain to my website during the auction. So it looks like this persons .com is owned by and/or is in some way related to my company and website. In effect using my website as the content for this persons domain auction.

For example: If some random person bought pepsi.com by luck and put it to auction with an auto-redirect to the official Pepsi company. Would that be legal? Obviously my company is minuscule compared to Pepsi. Still, this all seems completely wrong to me.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Margaret670

1 Comments

Sorted by latest first Latest Oldest Best

 

@Jamie184

There is one thing you can do quickly with some options depending upon how nice you want to be.

If you want to be nice, create a webpage that briefly and in bold letters explains what is going on. Then use something like this in your .htaccess file:

RewriteCond %{HTTP_REFERER} ^.*baddomain.com$ [NC]
RewriteRule .* www.mydomain.com/bugger-off.html [F,L]


If you do not feel like being nice you can just block them which is probably what I would do. The reason why I would chose the not so nice route is that I do not want search engines being confused though I am not sure how confused they would be.

RewriteCond %{HTTP_REFERER} ^.*baddomain.com$ [NC]
RewriteRule .* - [F,L]


The first example redirects anyone with the referrer of the bad domain name to the page bugger-off.html. Of course you can change the full URL reference to a shorter one and of course the page does not have to be bugger off. I just like the name. (gotta have a sense of humor these days...)

The second example provides a 403 Forbidden error and no page.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme