Podés hacer esto
.htaccess
Código Apache:
Ver originalOptions +FollowSymLinks
RewriteEngine On
RewriteRule ^(en|es)/(.*)$ $2.php?lang=$1 [L]
inicio.php
Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>inicio</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
</head>
<body>
<p>
<?php
$lang = $_GET['lang'];
if($lang == "es"){
echo "español";
}elseif($lang == "en"){
echo "inglés";
}else{
echo "español por defecto";
}
?>
</p>
</body>
</html>
idioma.php
igual que la anterior, pero en title le ponés "idioma", es para verificar el funcionamiento con diferentes páginas.
demo.html (links de ejemplo)
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <a href="/en/inicio">inicio.php en inglés
</a> |
<a href="/es/idioma">idioma.php en español
</a> |
<a href="/es/inicio">inicio.php en español
</a> |
<a href="/en/idioma">idioma.php en inglés
</a>
SAludos