WordPress Multisite Strange Redirect on Primary Site

I am using a plugin which allows for multiple TLD’s with WordPress multi-site. (WordPress MU Domain Mapping) No idea if this is a conflicting issue or not. Doubtfut, but thought I would throw it out there. Every now and then, when I visit the primary website which multi-site was installed on, I get redirected to … Read more

One WP install, I need to map a custom domain name to each category

I’ve read other answers but they weren’t satisfactory. Multiple blogs, different domain names, one install to rule them all Multiple Domain Names – One WP Install (non-Multisite) – Default Each Domain name to Category Archive I did try the second option as it seemed perfect for my needs, however, what happens is that while a … Read more

How to Redirect login User with Mapped Domiain Primary blog Url to Original Sub-site Url

I have the following code which redirects a user of a multi-site to their respective sub-site based on their primary blog url when they log in from the main site. add_filter(‘login_redirect’, function($redirect_to, $request_redirect_to, $user) { global $blog_id; global $current_user; if (!is_wp_error($user) && $user->ID != 0) { $user_info = get_userdata($user->ID); if ($user_info->primary_blog) { $primary_url = get_blogaddress_by_id($user_info->primary_blog)/* … Read more

WP 4.4 – domain mapping for sites within a multisite network?

I’ve spent hours researching this and still no clarity. I have a multisite installation, using subdomains. The base site is: www.foositenewtork.com Sites inside the network are like this: username.footsitenetwork.com I want someone to be able to register their own domain and put this in their browser: www.usernameownsite.com and have it simply work. I want to … Read more

Map alt domain to specific section of website w/o MU

I have one website on which I want to use multiple domain names. The URL pattern on the existing looks like this: Main domain: – shop.com – shop.com/products – shop.com/about-us – shop.com/pools/ – shop.com/pools/products – shop.com/pools/about-us – shop.com/spas/ – shop.com/spas/products – shop.com/spas/about-us I’d like to use multiple domain so I could use: Main domain: – … Read more

One WordPress Install, Two Categories. Each Category Gets a Domain

Ok here is a setup I am aiming for, hopefully someone knows how to get me there: One WordPress Install on www.mainsite.com www.mainsite.com will be a landing page that points to two Category links: Work, Play Work Category defaults to domain www.worklife.com Play Category defaults to www.play.mainsite.com Any other WordPress Pages will maintain www.mainsite.com as … Read more

Why are images uploaded to main domain, when using multisite with different domains?

I am using Worspress Multisite feature, where I have two domains: lkrnac.net -> main domain handysvandy.net -> secondary domain Not using any special plugin to handle multiple domains. In Network Admin area I have two sites registered with two mentioned domains. Also have “Path” set to root (“https://wordpress.stackexchange.com/”) for each site and checked “Update siteurl … Read more

Changing admin sub-domain in WordPress multisite

I have a WordPress multisite installation where the primary domain name is domain1.com. I have two other domain names set as alpha.domain1.com and beta.domain1.com which both correspond to domain2.com and domain3.com when accessed without logged in. However when I login to any of these two subdomain sites, the admin is always alpha.domain1.com/wp-admin and beta.domain1.com/wp-admin How … Read more