Php with MVC does not work in Ubuntu, how to make it work?

0

I did a project in php with MVC, in Windows everything runs normal; I installed ubuntu with all the tools, php, Apache 2, Mysql and it works normal with a php file that is in a single page, connects me with the database, but the project made with MVC does not work, if I navigate to the pages with the normal route, Project / views / client / index.php shows it, but when I put Project / clients that is the route with MVC it does not work and it tells me that the page is not found, what can this be ?. Help please.

    
asked by BastianBurst 23.06.2017 в 23:04
source

1 answer

1

in linux you have to take into account "Case sensitive" is not the same views / client / index.php than Views / Client / Index.php, check all the paths of your files preferably so you do not get confused handle everything in lowercase

    
answered by 24.06.2017 / 06:16
source