>I want to protect my VRML-World by
using
>the referer of my site. If anyone tries
>to load the world from an other site I
>want it to block the world.
>Do you have any Idea, how to use
>referers or do you have any other idea
>how to protect the world?
>
Yes, you can use referer, but in my
personal opinion this is not very
reliable method.
You can check REFERER in cgi-script, for
example (Perl):
if ($ENV{REFERER} == 'good referer') {
print "Content-Type: text/html\n";
print "Location: /path/to/your/scene.wrl\
n\n";
}
---------------
parker
|
|