I have two URLs
They are different URLs that lead to different .php files, so I did so my htaccess:
RewriteRule ^entre-em-contato entre-em-contato.php
RewriteRule ^en antigo-en.php
But both URLs are leading to the file antigo-en.php
I tried to flip as I read this post :
RewriteRule ^en antigo-en.php
RewriteRule ^entre-em-contato entre-em-contato.php
But both continue to redirect to antigo-en.php
What to do?