Well, I'm doing internships in a web development company and tals and soon we had a problem in redirecting the page.
In the company we used for this project Php MVC (I never got to deepen in Php) and an .htacess file that I had never seen before.
Then about this file, can you explain what this code is doing?
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_FILENAME} (\.php)$
#RewriteBase /projetos/c/*****/dev/acompanhamentoobra/
RewriteBase /acompanhamentoobra/
RewriteRule ^(.+)$ index.php?path=$1 [QSA,L]