Imagine a htaccess file like this:
RewriteEngine on
RewriteRule !^proxy/index.php$ index.php [L]
And index.php is the only php file in the directory proxy. Now all urls like proxy/.. should be rewritten to index.php. This does not work for urls like proxy/foo.php (404 file not found). It works fine with the previous php-fgci.
The reason may be the new "ProxyPassMatch" directive in vhost-config?
RewriteEngine on
RewriteRule !^proxy/index.php$ index.php [L]
And index.php is the only php file in the directory proxy. Now all urls like proxy/.. should be rewritten to index.php. This does not work for urls like proxy/foo.php (404 file not found). It works fine with the previous php-fgci.
The reason may be the new "ProxyPassMatch" directive in vhost-config?