出于某些原因,我需要将Magento管理员放在与前端基本URL不同的域中.让我举个例子:
Magento商店:http://www.domain.com/storecode/urlpath.html(https用于帐户和结帐页面)
我想将admin设置为以下URL:https: //sub.domain.com/adminpath/(其中domain.com等于存储URL)
我正在使用MagentoCE 1.9.0.1
我已经在local.xml中设置了自定义管理路径
<admin>
<routers>
<adminhtml>
<args>
<frontName><![CDATA[adminpath]]></frontName>
</args>
</adminhtml>
</routers>
</admin>
Run Code Online (Sandbox Code Playgroud)
在系统 - >配置 - >管理员,我尝试了自定义管理URL和自定义管理路径的一些值组合,但似乎没有任何工作(我试图遵循这里提出的解决方案:http://www.magentocommerce.com/wiki/1_ -_installation_and_configuration/set_up_magento_backend_on_a_separate_node)
谁知道我做错了什么?
感谢帮助 !
magento ×1