承接 nativemind/module-multidomain 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

nativemind/module-multidomain

Composer 安装命令:

composer require nativemind/module-multidomain

包简介

Multi-domain to Store View mapping for Magento 2

README 文档

README

Magento 2 module for mapping multiple domains to different Store Views. Manage domain-to-store mappings via Admin Panel without modifying code.

Features

  • Admin UI for CRUD operations on domain mappings (Stores > MultiDomain Mappings)
  • Configuration stored in PHP file for maximum performance (no DB queries on page load)
  • Magento Plugin architecture — no core file modifications
  • Fallback to default Magento behavior for unconfigured domains
  • ACL permissions for admin access control
  • Debug mode with logging

Requirements

  • Magento 2.4.x
  • PHP 8.1+

Installation

Manual Installation

  1. Copy module to Magento:

    cp -r app/code/NativeMind /path/to/magento/app/code/
  2. Enable and install:

    bin/magento module:enable NativeMind_MultiDomain
    bin/magento setup:upgrade
    bin/magento cache:clean

Composer Installation

composer require nativemind/module-multidomain
bin/magento setup:upgrade
bin/magento cache:clean

Configuration

Step 1: Configure Base URLs in Magento (Required)

Important: This module only handles routing domains to Store Views. You must manually configure Base URLs for each Store View in Magento settings.

Go to Stores > Configuration > General > Web and for each Store View set:

  • Base URL: https://your-domain.com/
  • Base Link URL: https://your-domain.com/
  • Secure Base URL: https://your-domain.com/
  • Secure Base Link URL: https://your-domain.com/

The plugin does not modify default URL paths — it only resolves which Store View to load based on the incoming domain.

Step 2: Add Domain Mappings

  1. Go to Stores > MultiDomain Mappings
  2. Click Add New Domain
  3. Enter domain (e.g., ru.example.com) and select Store View
  4. Save

Configuration is stored in app/etc/nativemind_multidomain.php:

<?php
return [
    'domains' => [
        'example.com' => 'default',
        'ru.example.com' => 'view_ru',
        'de.example.com' => 'view_de',
    ],
    'default_store' => 'default',
    'debug_mode' => false,
];

How It Works

The module uses a Magento Plugin on Magento\Store\Model\StoreResolver::getCurrentStoreId():

  1. Plugin intercepts store resolution
  2. Reads HTTP_HOST from request
  3. Looks up domain in configuration
  4. Returns corresponding Store ID or falls back to default Magento behavior

No index.php modification required.

Web Server Configuration

Ensure your web server routes all domains to the same Magento installation.

Nginx Example

server {
    listen 80;
    server_name example.com ru.example.com de.example.com;

    root /var/www/magento/pub;

    # ... standard Magento nginx config ...
}

Apache Example

<VirtualHost *:80>
    ServerName example.com
    ServerAlias ru.example.com de.example.com

    DocumentRoot /var/www/magento/pub

    # ... standard Magento apache config ...
</VirtualHost>

Troubleshooting

Domain not resolving to correct Store View

  1. Check app/etc/nativemind_multidomain.php exists and contains your domain
  2. Verify Store View code is correct and store is active
  3. Enable debug mode and check var/log/system.log:
    // In app/etc/nativemind_multidomain.php
    'debug_mode' => true,
  4. Clear cache: bin/magento cache:clean

Permission errors when saving

Ensure app/etc/ directory is writable by web server:

chmod 775 app/etc/
chown www-data:www-data app/etc/

Uninstallation

bin/magento module:disable NativeMind_MultiDomain
bin/magento setup:upgrade
rm -rf app/code/NativeMind/MultiDomain
rm -f app/etc/nativemind_multidomain.php
bin/magento cache:clean

License

This module is licensed under NativeMindNONC License.

  • Free for non-commercial use: Educational institutions, personal learning, non-commercial research
  • Commercial use requires license: Contact copyright holder for commercial licensing

See LICENSE for full terms.

Support

For issues and feature requests, please use the GitHub issue tracker.

Copyright 2010-2025 NativeMind. All rights reserved.

nativemind/module-multidomain 适用场景与选型建议

nativemind/module-multidomain 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 1, 最近一次更新时间为 2026 年 03 月 16 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「multidomain」 「magento2」 「magento 2」 「multi-store」 「store-view」 「domain-mapping」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 nativemind/module-multidomain 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 nativemind/module-multidomain 我们能提供哪些服务?
定制开发 / 二次开发

基于 nativemind/module-multidomain 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 26
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: NativeMindNONC
  • 更新时间: 2026-03-16