Re: Handler Concept / Question

2002-08-13 Thread Thomas Whitney
You were close. It's default-handler. http://httpd.apache.org/docs/handler.html And in mod_perl docs: http://perl.apache.org/docs/1.0/guide/config.html#Overriding_E_lt_LocationE _gt__Setting_in__Sub_Location_ __ Thanks, that was what I was looking for. Thomas Whitney

Re: Handler Concept / Question

2002-08-12 Thread Thomas Whitney
If I do set my script to answer all requests, how do I tell the webserver to show the static content that exists under the requested url? You have to make the default handler pick it up. I forget the exact syntax, but there were some examples posted to the mailing list a while back. -

Re: Handler Concept / Question

2002-08-12 Thread Rick Myers
On Aug 12, 2002 at 11:50:56 -0600, Thomas Whitney wrote: I was following this thread with interest because I want to do something like this. I started searching on list archive for the above mentioned syntax, I searched for 'static content', then 'default handler', but with no luck.

Re: Handler Concept / Question

2002-08-12 Thread Stas Bekman
Rick Myers wrote: On Aug 12, 2002 at 11:50:56 -0600, Thomas Whitney wrote: I was following this thread with interest because I want to do something like this. I started searching on list archive for the above mentioned syntax, I searched for 'static content', then 'default handler',

Handler Concept / Question

2002-08-08 Thread David Cumming
The basic concept I want to accomplish isto allow for static and dynamic content to be accessed from any url and be transparent to the visitor. i.e publish a static page called /foo/bar.htm have a dynamic page called /foo/foobar.htm I imagine there are a couple of different ways to do