
September 1st, 2000, 10:23 AM
|
|
Junior Member
|
|
Join Date: Aug 2000
Location: Ventura, CA USA
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Thank you. I put it here in Apache because I couldn't think where else to post it.
Regards,
<BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">quote:</font><HR>Originally posted by freebsd:
There are many ways to do it in Perl.
i.e. LWP::Simple
Since you posted this to Apache forum, I assume you want the Apache way.
Start here -> http://www.engelschall.com/pw/apache/rewriteguide/#ToC26
Here is my example should you not understand anything about it...
1) create a "test" directory as shown below: http://www.foobar.com/test
2) create an .htaccess file at http://www.foobar.com/test/.htaccess
3) put the following in your .htaccess
RewriteEngine on
RewriteBase /test/
RewriteRule ^(.*)$ http://www.perl.com/CPAN-local/modules/by-module/$1 [P]
4) then quickly go to http://www.perl.com/CPAN-local/modules/by-module/ and take a look
5) then go to your own http://www.foobar.com/test/ [/quote]
|