https://issues.apache.org/bugzilla/show_bug.cgi?id=40781





--- Comment #2 from Troy Rollo <[email protected]>  2009-02-21 13:36:31 
PST ---
This also occurs with a .htaccess file of the following form:

    RewriteEngine on
    RewriteBase /~user/app
    RewriteRule ^(.*)$ /cgi-bin/cgi-prog/~user/app/app.ext?$1

This one can be worked around by changing the .htaccess file to add a handler
and modifying the rewrite rule as follows:

    AddHandler run-cgi-prog .ext
    Action run-cgi-prog /cgi-bin/cgi-prog
    RewriteEngine on
    RewriteBase /~user/app
    RewriteRule ^(.*)$ /~user/app/app.ext?$1

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to