[EMAIL PROTECTED] wrote:

I have mod rewrite setup to redirect request that don't an existing
file or directory to the perl handler.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/(.*) /ex_perl_h [L]
</IfModule>

but this doesn't work.

Why do you mean by "this doesn't work". There are lots of ways for it to work incorrectly. Should we guess? Ok, my guess is that's it's going to /ex_perl_h but not /ex_perl_h/docName. Try changing your RewriteRule to this:

  RewriteRule ^/(.*) /ex_perl_h/$1 [L]

--
Michael Peters
Plus Three, LP

Reply via email to