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
-
Copy module to Magento:
cp -r app/code/NativeMind /path/to/magento/app/code/
-
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
- Go to Stores > MultiDomain Mappings
- Click Add New Domain
- Enter domain (e.g.,
ru.example.com) and select Store View - 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():
- Plugin intercepts store resolution
- Reads
HTTP_HOSTfrom request - Looks up domain in configuration
- 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
- Check
app/etc/nativemind_multidomain.phpexists and contains your domain - Verify Store View code is correct and store is active
- Enable debug mode and check
var/log/system.log:// In app/etc/nativemind_multidomain.php 'debug_mode' => true,
- 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 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 nativemind/module-multidomain 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Russian Language Pack for Magento 2
DPD Magento2 Shipping extension
Auto generate related products for Magento 2
Laravel App on a subdomains, multi-tenancy setting(this is a fork of 'gecche/laravel-multidomain' qith support for laravel10)
Magento 2 Social Login extension is designed for quick login to your Magento 2 store without procesing complex register steps
Magento - Clean up session extension
统计信息
- 总下载量: 0
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 26
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: NativeMindNONC
- 更新时间: 2026-03-16