0
I’ve done several searches but I haven’t found the solution to my problem.
I have an htaccess in the following format:
RewriteEngine On
RewriteRule fotos$ arc_fotos.php
RewriteRule fotos/$ arc_fotos.php
RewriteRule minha-area/$ arc_minha_area.php
RewriteRule minha-area/fotos$ arc_minhas-fotos.php
When I access the address meudominio.com.br/photos -> photo page (arc_photos) OK
But when I access the address meudominio.com.br/my-area/photos it goes to arc_fotos.php and I want it to go to arc_minhas_fotos.php
The same case happens when:
RewriteEngine On
RewriteRule blog/$ arc_blog.php
RewriteRule esqueci esqueci_senha.php
When the user accesses meudominio.com.br/blog/uma-pagina-com-url-inforgotvel he interprets inI forgotand goes to the page forgetting_password.php
Can someone help me to avoid this kind of conflict?