WordPress mu domain mapping

Essentially, no. If you look at how that plugin stores its mappings: mysql> desc wp_domain_mapping; +———+————–+——+—–+———+—————-+ | Field | Type | Null | Key | Default | Extra | +———+————–+——+—–+———+—————-+ | id | bigint(20) | NO | PRI | NULL | auto_increment | | blog_id | bigint(20) | NO | MUL | NULL | | … Read more

Same site answering to two domain names

On the surface this is quite trivial, WP discerns domain from current configuration and it can be defined in config file: define(‘WP_HOME’,’http://example.com’); define(‘WP_SITEURL’,’http://example.com’); This can easily be done dynamically, depending on current domain being requested from PHP context. As long as domains map to same IP and location on server. Note that duplicate content is … Read more