我建立了多个网站:一个是基本的 Magento 文件夹,另一个位于 Magento 文件夹内的单独文件夹中(其中有一个索引文件和 .htaccess 文件)。我收到错误消息:There was no 404 CMS page configured or found
当我转到类别顶部菜单时。
主站点的 htaccess 文件没有变化:
#RewriteBase /magento/
第二个站点即:magento/mywebsite:
RewriteBase /Ki-cartonn/
主站点索引文件:
$compilerConfig = 'includes/config.php';
$mageFilename = 'app/Mage.php';
umask(0);
Mage::run();
第二个站点:$compilerConfig =
'..includes/config.php';
$mageFilename = '..app/Mage.php';
umask(0);
Mage::run('mywebsite','website');
我已经正确设置了配置和类别。在本地运行良好。我怎样才能弄清楚这个错误?