Tu .htaccess
Código Apache:
Ver originalOptions +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/(.*)/(.*)/$ /index.php?idioma=$1&sec=$2&sub=$3 [L]
tu html
Tu php
Código PHP:
Ver original<?php
echo "$idioma - $sec - $sub";
?>
Así debería funcionar
Saludos