Ok grazie filippo per le dritte,ora ho rifatto tutto basato solo sulla variabile nell'url...ma ora ho un problema insormontabile
Ovviamente la variabile che appendo è la solita lang=it lang=en etc.etc.
Ma ovviamente voglio fare in modo che al posto della variabile ci sia qualcosa del tipo:
/it/pagina.php
/en/pagina.php

Niente di piu' facile,apro .htaccess e me lo sistemo a dovere....e qui nasce il problema....lo apro e.... VVoVe: VVoVe: il file non usa mezza delle regole che conosco...ma solo un maledetto file chiamato loader.php
Vi posto il codice dell'htaccess:

codice:
# Comment the 2 lines below if the server returns 500 errors!
Options -Indexes
Options +FollowSymLinks

#Uncomment following lines if you want to use image caching!
#<IfModule mod_expires.c>
#  ExpiresActive On
#  ExpiresDefault A1209600
#  ExpiresByType text/html A1
#</IfModule>

# Uncomment following lines if Apache doesnt support MultiViews!
<IfModule mod_rewrite.c>
    RewriteEngine On
	
	# Uncomment the 2 lines below if you are using www.domain.com
	# as the baseurl for the site and users access your site 
	# via domain.com (THIS IS REQUIRED FOR JQUERY TO WORK)
	#RewriteCond %{HTTP_HOST} ^domain.com [NC]
	#RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301] 

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* loader.php [L,QSA]
</IfModule>

# Edit below lines and set to
# ErrorDocument CODE /RELATIVE/error.php
# If the script is installed in the default document
# root then relative is null.
#ErrorDocument 401 /error.php
#ErrorDocument 403 /error.php
#ErrorDocument 404 /error.php
Non demordo e apro il file loader.php

Codice PHP:
<?php
//die('Only enable this script if you dont have support for MultiViews');
$relative '';
$loaders  = array(
    
'ajax' => 1,
    
'album' => 1,
    
'albums' => 1,
    
'blog' => 1,
    
'blogs' => 1,
    
'captcha' => 1,
    
'categories' => 1,
    
'community' => 1,
    
'confirm' => 1,
    
'error' => 1,
    
'feedback' => 1,
    
'feeds' => 1,
    
'game' => 1,
    
'games' => 1,
    
'index' => 1,
    
'invite' => 1,
    
'loader' => 1,
    
'login' => 1,
    
'logout' => 1,
    
'lost' => 1,
    
'mail' => 1,
    
'notice' => 1,
    
'notices' => 1,
    
'photo' => 1,
    
'requests' => 1,
    
'search' => 1,
    
'signup' => 1,
);

$query      = ( isset($_SERVER['QUERY_STRING']) ) ? $_SERVER['QUERY_STRING'] : NULL;
$request    str_replace($relative''$_SERVER['REQUEST_URI']);
$request    str_replace('?' .$query''$request);
$request    explode('/'trim($request'/'));
if (isset(
$request['0'])) {
    
$page   $request['0'];
    if (isset(
$loaders[$page])) {
        require 
$page'.php';
    } else {
        
header('HTTP/1.0 404 Not Found');
          die();
    }
} else {
    
header('HTTP/1.0 404 Not Found');
    die();
}
?>
altro infarto!!! VVoVe:

Datemi un indizio su quello che devo fare per pietà