magento根目录中的多个商店不正确

时间:2015-06-16 02:17:02

标签: php .htaccess magento subdomain

所以我建立了一个子域名。将index.php和访问文件复制到目录。遵循基本说明,包括更改根域,以便正确指出mage.php文件。

但是,当我加载我的子域名时,我收到以下错误:

  

/home/userID/public_html/subdomainfolder/home/userID/public_html/app/Mage.php   没找到

看起来它没有正确指向我的根域,但我不确定为什么。我希望有人可以帮助我!

这是我修改过的index.php。

define('MAGENTO_ROOT', getcwd());

$compilerConfig = MAGENTO_ROOT . '/includes/config.php';
if (file_exists($compilerConfig)) {
include $compilerConfig;
}

$mageFilename = MAGENTO_ROOT . '/home/user/public_html/app/Mage.php';
$maintenanceFile = 'maintenance.flag';

if (!file_exists($mageFilename)) {
if (is_dir('downloader')) {
    header("Location: downloader");
} else {
    echo $mageFilename." was not found";
}
exit;
}

if (file_exists($maintenanceFile)) {
include_once dirname(__FILE__) . '/errors/503.php';
exit;
}

require_once $mageFilename;

#Varien_Profiler::enable();

if (isset($_SERVER['MAGE_IS_DEVELOPER_MODE'])) {
Mage::setIsDeveloperMode(true);
}

#ini_set('display_errors', 1);

umask(0);

/* Store or website code */
$mageRunCode = isset($_SERVER['MAGE_RUN_CODE']) ? $_SERVER['MAGE_RUN_CODE']    : 'subdomain';

/* Run store or run website */
$mageRunType = isset($_SERVER['MAGE_RUN_TYPE']) ? $_SERVER['MAGE_RUN_TYPE'] : 'website';



    Mage::run($mageRunCode, $mageRunType);

我将此添加到我的.htaccess

SetEnvIf Host www\.sub.domain\.com MAGE_RUN_CODE=subdomain

SetEnvIf Host www\.sub.domain\.com MAGE_RUN_TYPE=website

SetEnvIf Host ^sub.domain\.com MAGE_RUN_CODE=subdomain

SetEnvIf Host ^sub.domain\.com MAGE_RUN_TYPE=website

0 个答案:

没有答案