I have a Slim 3 app under a httpd server:
Companys Website
/var/www/html/index.html
My Slim 3 App
/var/www/html/my-app
My Slim 3 App has this organization:
my-app/app <- php classes
my-app/vendor <- third part libraries
my-app/web <- static resources and index.php to bootstrap slim framework
How to do this app works under this httpd server?
I would like to do my app running under company-site.com/my-app
In the dev machine, I’am using a virtual host for this, but I could not figure out how to do on this server because of the company-site.
When I go to company-site.com/my-app/web/index.php the action should send the request to company-site.com/my-app/login, but is sending to company-site.com/login
I thing it should be a little configuration detail, but I could not found how to solve.