MU domain mapping without using a plugin

To be honest even after your Update: How may I fix the fact that the admin area preserves the original url when using the Domain Mapping plugin (the one with the sunrise.php)? I don’t quite understand whether you want to “Redirect administration pages to network’s original domain” or not. In any case, as per the … Read more

Changing blog domain name

Rather than manually making changes to the WP tables, I use the “WP Clone” plugin. It saves the entire blog to a zip file, then you Restore that on the new site (using WP Clone). The restore process makes any needed changes to the domain names/links/whatever, so the new site just works. You will log … Read more

Can I use WP’s built in domain mapping with WP installed on a sub-domain?

In order to fix your problem, assuming you are using Apache web server, paste this into your .htaccess (the .htaccess inside the sub-domain (my) directory): RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ – [L] … Read more

Multisite with different domain names

WordPress Multisite can handle this without a plugin. What you need to do: I’m assuming that your WP Multisite installation is at example.wordpress.com and your desired URL for the new site is example.com, per your question. Create the site in the Network Admin section on example.wordpress.com. Select Edit Site on the newly-created site. Change the … Read more