سایت من در مسیر زیر ساخته شده بود:
C:\wamp\www\

مراحل انتقال هم شامل بک آپ گیری از DB و خود سایت. آپلود و... طبق لینک زیر(مرحله به مرحله)


یه چندخط از کد فایل index.php خودم رو میذارم تا ببینید میگم دنبال فایلهای wampserver میگرده یعنی چه:
---------------------------
<?php

// Page cr par Shepard [Fabian Pijcke] <Shepard8@laposte.net>

// Arno Esterhuizen <arno.esterhuizen@gmail.com>

// et Romain Bourdon <romain@anaska.com>

//

// icnes par Mark James <http://www.famfamfam.com/lab/icons/silk/>

//chemin jusqu'au fichier de conf de WampServer

$wampConfFile = '../wampmanager.conf'; <----------this line

//chemin jusqu'aux fichiers alias

$aliasDir = '../alias/'; <----------this line

// on charge le fichier de conf locale

if (!is_file($wampConfFile)) <----------this line & etc.

die ('Unable to open WampServer\'s config file, please change path in index.php file');

//require $wampConfFile;

$fp = fopen($wampConfFile,'r');

$wampConfFileContents = fread ($fp, filesize ($wampConfFile));

fclose ($fp);

//on rcpres les versions des applis

preg_match('|phpVersion = (.*)\n|',$wampConfFileContents,$result);

$phpVersion = str_replace('"','',$result[1]);

preg_match('|apacheVersion = (.*)\n|',$wampConfFileContents,$result);

$apacheVersion = str_replace('"','',$result[1]);

preg_match('|mysqlVersion = (.*)\n|',$wampConfFileContents,$result);

$mysqlVersion = str_replace('"','',$result[1]);

preg_match('|wampserverVersion = (.*)\n|',$wampConfFileContents,$result);

$wampserverVersion = str_replace('"','',$result[1]);

// repertoires ignorer dans les projets

$projectsListIgnore = array ('.','..');

// textes

$langues = array(

'en' => array(

'langue' => 'English',

'autreLangue' => 'Version Fran&ccedil;aise',

'autreLangueLien' => 'fr',

'titreHtml' => 'WAMPSERVER Homepage',

'titreConf' => 'Server Configuration',

'versa' => 'Apache Version :',

'versp' => 'PHP Version :',

'versm' => 'MySQL Version :',

'phpExt' => 'Loaded Extensions : ',

'titrePage' => 'Tools',

'txtProjet' => 'Your Projects',

'txtNoProjet' => 'No projects yet.<br />To create a new one, just create a directory in \'www\'.',

'txtAlias' => 'Your Aliases',

'txtNoAlias' => 'No Alias yet.<br />To create a new one, use the WAMPSERVER menu.',

'faq' => 'http://www.en.wampserver.com/faq.php'

),

'fr' => array(

'langue' => 'Franais',

'autreLangue' => 'English Version',

'autreLangueLien' => 'en',

'titreHtml' => 'Accueil WAMPSERVER',

'titreConf' => 'Configuration Serveur',

'versa' => 'Version de Apache:',

'versp' => 'Version de PHP:',

'versm' => 'Version de MySQL:',

'phpExt' => 'Extensions Charg&eacute;es: ',

'titrePage' => 'Outils',

'txtProjet' => 'Vos Projets',

'txtNoProjet' => 'Aucun projet.<br /> Pour en ajouter un nouveau, cr&eacute;ez simplement un r&eacute;pertoire dans \'www\'.',

'txtAlias' => 'Vos Alias',

'txtNoAlias' => 'Aucun alias.<br /> Pour en ajouter un nouveau, utilisez le menu de WAMPSERVER.',

'faq' => 'http://www.wampserver.com/faq.php'

)

);
---------------------
امیدوارم متوجه مشکل شده باشید