I wrote: > I added the following section to Apache's httpd.conf file. > >> SCGIServer 127.0.0.1 4000 > SCGIHandler On > > > But when I attempt requests for /dynamic, I get back a response of > "Forbidden: You don't have permission to access /dynamic/ on this server." Neil Schemenauer suggested running the minimal SCGI server rather than the Quixote handler, and perhaps also adding an explicit 'Allow' directive for /dynamic to ensure that access was enabled. I did both but got the same error. Thanks for the suggestion though. It looks like the problem was due to an inherited multiviews option. I put an 'Options -Multiviews' directive in /dynamic and it all seemed to work OK. Hamish