Quote:
Originally Posted by Cleo
In Tommy's example you can hotlink by putting the page in a directory called "yourdomain.com"
|
No, you can't. Try it. It allows only that which matches
the regex, which says:
^http:// First, http://
([a-z0-9-]+\.)* then allow letters, numbers, and dots (but not slashes or anything else)
yourdomain.com then your domain name.
http://hacker.com/yourdomain.com would not match the
second atom of the regex, which allows only letters, numbers,
and dots, but not the slash that would have to come between
hacker.com and yoursite.com.