0
I have two Urls
http://localhost/odata/contact
They are different URL that lead to different . php files, so I did my htaccess:
RewriteRule ^entre-em-contato entre-em-contato.php
RewriteRule ^en antigo-en.php
But both Urls are leading to the archive antigo-en.php
I tried to reverse it like I read in that post:
RewriteRule ^en antigo-en.php
RewriteRule ^entre-em-contato entre-em-contato.php
But you’re still both redirecting to antigo-en.php
What to do?