I have a single Nginx installation and I am using PHP-FPM to serve multiple PHP applications in sub directories. Example:
/var/www/ (this is 'root')
/var/www/a/foo/index.php
/var/www/a/bar/index.php
/var/www/b/bar/index.php
I want to setup url rewriting so that any request to http://xxx/a/foo/index.php/users/login gets redirected to http://xxx/a/foo/index.php and similarly http://xxx/a/bar/index.php/users/login gets redirected to http://xxx/a/bar/index.php
I may have a large number of applications in the sub directories so I don't want to setup individual location blocks for each application. Can I accomplish this with a global rewrite rule? Please let me know if you need more information.
Luke