私のサイトのURL
1) http://www.example.com/pt-br/perguntas-frequentes/ - エラーを表示
2) http://www.example.com/pt-br/perguntas-frequentes - 正常に動作しています。
次のようにWPMLプラグインコードを使用しています
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>