Php Magento双TLD存储

Php Magento双TLD存储,php,magento,tld,Php,Magento,Tld,我一直在跟踪以帮助我在服务器上设置双TLD,指向一个存储,以便您可以有效地有两个基本路径。。。domain.com和domain.co.uk作为两个独立的存储区,但访问一组数据等(不只是将一组数据转发给另一组) 这是我的文件夹结构 .co.uk索引位于服务器根目录下的.com下(请忽略标有.com的文件夹) 根据说明,我需要做两件事 1)更改我的第二个TLD位置上的index.php,以反映我的单个magento存储Mage.php工作已完成 2)更改最后一行以反映我的门店代码 "Next yo

我一直在跟踪以帮助我在服务器上设置双TLD,指向一个存储,以便您可以有效地有两个基本路径。。。domain.com和domain.co.uk作为两个独立的存储区,但访问一组数据等(不只是将一组数据转发给另一组)

这是我的文件夹结构 .co.uk索引位于服务器根目录下的.com下(请忽略标有.com的文件夹)

根据说明,我需要做两件事

1)更改我的第二个TLD位置上的index.php,以反映我的单个magento存储Mage.php工作已完成

2)更改最后一行以反映我的门店代码

"Next you change the website reference on the last-ish line. You enter the reference you gave that store in the Magento admin"
对于那些可以提供帮助的人,下面是位于.com TLD上的完整代码

<?php
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category   Mage
 * @package    Mage
 * @copyright  Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

if (version_compare(phpversion(), '5.2.0', '<')===true) {
    echo  '<div style="font:12px/1.35em arial, helvetica, sans-serif;">
<div style="margin:0 0 25px 0; border-bottom:1px solid #ccc;">
<h3 style="margin:0; font-size:1.7em; font-weight:normal; text-transform:none; text-align:left;     color:#2f2f2f;">
Whoops, it looks like you have an invalid PHP version.</h3></div><p>Magento supports PHP 5.2.0 or     newer.
<a href="http://www.magentocommerce.com/install" target="">Find out</a> how to install</a>
 Magento using PHP-CGI as a work-around.</p></div>';
    exit;
}

/**
 * Error reporting
 */
error_reporting(E_ALL | E_STRICT);

/**
 * Compilation includes configuration file
 */
define('MAGENTO_ROOT', getcwd());

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

$mageFilename = MAGENTO_ROOT . '/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'] : '';

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

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

也许这是倒数第三行
$mageRunCode=isset($\u SERVER['MAGE\u RUN\u code'])$_服务器['MAGE_RUN_CODE']:''
我的网站的代码中应该有
base
?像
$mageRunCode=isset($\u服务器['MAGE\u运行\u代码])$_服务器['MAGE_RUN_CODE']:'base'
或者我是否需要使用其他代码设置第二个网站?