Ben çok dilli bir site var ve ben URL böyle bir sahte dizin şey yeniden çalışıyorum:
http://localhost/theSite/page.php?id=param&cat=param?lang=en,fr,es to http://localhost/theSite/(en|fr|es)/page/param/param
.htaccess
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(fr|en|en)/(.*) $2.php?id=$1&cat=$2&lang=$3 [NL,QSA]
Bu bir 404 hata olarak giderir.
Herhangi bir yardım apreciate olacaktır.