在我的网站中,网址
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>