我有一个magento 站点主域。
我做了以下步骤:
1.Downloaded the full magento site from main domain(mydomain.com)
2.Created a sub domain as new.mydomain.com(in plesk)
3.Uploaded the full magento site in to sub domain.
4.Created new database and imported the database.
5.Changed the secure url and unsecure url as 'http://www.new.mydomain.com/' in core_config_table.
6.Changed the local.xml file with new database details.
我做了上面的步骤。
然后我在浏览器中将子域作为 new.mydomain.com,但它转到主域(mydomain.com)。
这是什么原因?
我联系了客户,客户给我的信息说,没有服务器问题。它在您的代码中。
那么这里的问题是什么?
是否有从子域到主域的重定向?
或者是否有任何文件取自主域而不是子域?
我该如何解决这个问题?
我需要做任何额外的步骤吗?
我已经检查了 index.php 页面:
在这里,我在此之前给出一个回声声明Mage::run($mageRunCode, $mageRunType);
:
echo "test";
die();
Mage::run($mageRunCode, $mageRunType
然后test
将显示。
所以在运行时mage
它会重定向到主域。