I currently have a multilanguage PHP site on which everything works fine. However, the "file name" does not change when "switching the language."
The URLs are like this:
www.site.com/br/article.pt.php
www.site.com/en/article.en.php
I want them to be:
www.site.com/br/meuartigo.pt.php
www.site.com/en/article.en.php
How can I do this? I could just do 301 redirects from
www.site.com/br/article.pt.php
to
www.site.com/br/meuartigo.pt.php
but I don't think that's the best way.