In my site the URL
1) http://www.example.com/pt-br/perguntas-frequentes/ - shows error
2) http://www.example.com/pt-br/perguntas-frequentes - working fine.
I am using WPML plugin Code as follows
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>