Quote:
Originally Posted by Scalemotorcars
I just wanted to add that this mod is helping allot actually. I was being hit with spambots every few seconds all day every day trying to register. So far after a few days Im down to about 100 a day. That's a big change, thanks.
Still, it would be nice to be able to hide the URL somehow. I'm sure it can be done but I'm no wiz with htaccess so maybe someone would be willing to take up the challenge.
|
Here is an example on how you can achieve this:
Code:
<html>
<head>
<Title>Hide the URL from Address bar</title>
</head>
<body>
<a href="http://www.google.com">Normal Link</a>
<a href="javascript:void(0)" onclick="location.href='http://www.google.com'">Hide Link</a>
</body>
</html>