in reply to load a script at one location BUT the browser thinks im somewhere else.

I think your trying to access a page (i.e. http://www.mysite.com/cgi/myscript.cgi )
by a URL like www.whereever.com/helloworld. Assuming your script is a perly-one,
you can use mod_perl (assuming again that u use apache) for doing this.

httpd.conf:
<Location /HelloWorld> SetHandler perl-script PerlHandler YourScript::asAmodul </Location>
see more about this at: http://perl.apache.org/guide/porting.html#Converting_to_use_Apache_Perl_Mo

If you're not using apache, ignore this message :-)
--physi--
  • Comment on Re: load a script at one location BUT the browser thinks im somewhere else.
  • Download Code