There are 2 ways in which you can map external domains to sites inside a Multisite network. You can either use ‘A’ record or use ‘CNAME’ record at DNS end (for domain being mapped).
In this article, I will explain how to setup Domain-Mapping itself and then how to configure or map external domains in WordPress-Multisite.
Before you go ahead, you must have a WordPress Multisite Network created using subdomains or subdirectory.
WordPress Multisite Domain-Mapping Setup (one-time)
This is one-time activity only.
- Install WordPress MU Domain Mapping plugin. Activate it Network-wide.
- Add the following line in wp-config.php file. (
vim /var/www/example.com/htdocs/wp-config.php
)
define( 'SUNRISE', 'on' );
- Copy
sunrise.php
from Domain-mapping plugins folder towp-content
folder of your WordPress setup.
cp /var/www/example.com/htdocs/wp-content/plugins/wordpress-mu-domain-mapping/sunrise.php /var/www/example.com/htdocs/wp-content/
- After this, go to
Network Admin >> Dashboard >> Settings >> Domain Mapping
menu. - On next screen, either provide IP address of your server or a CNAME record which you want to use with other domains. Note: If you add both – an IP address and a CNAME record, only CNAME will work!
- Apart from this, you will notice few more settings: “Domain Options”. You can leave them as it is. I recommend enabling the “Permanent redirect” option.
IP-Address (A-record) v/s CNAME-records based Domain Mapping
If you are confused what to use, the following may help you make a choice:
- IP-address based domain mapping uses A-records. IP-Address based domain-mapping will be slightly faster as it saves 1 DNS look-ups. This advantage is not significant since most name-servers use caches.
- CNAME-records are easy to manage, if you will be hosting 100’s of sites on your network. If you change IP of your WordPress server, say change in hosting service, then you will need to make update IP address for your own CNAME record only. In other case, you need to update IP address for all A-records for all domains mapped to your server.
Dedicated IP:
In both cases, your server must have a dedicated IP address. You can host other sites on same IP address but you cannot host 2 or more WordPress Multisite networks with domain mapping on same IP address.
Mapping External Domains to sites in WordPress-Multisite (ongoing)
You can create new sites as usual in your WordPress-Multisite network. You will need to follow these extra steps in case you wish to map one or more domains to network sites.
- Go to
Network Admin >> All Sites
list - Click on edit link for a site for which you want to map external domain.
- If link is => http://example.com/wp-admin/network/site-info.php?id=5 ; your site-id => 5
- Go to
Network Admin >> Dashboard >> Settings >> Domains
- Look for
New Domain
option - Enter site-id and external-domain name.
- Click
Save
button!
Screenshot:
At this point, you need to add a CNAME-record or A-record for external domain at your DNS registrar end. Since instructions for them vary from domain to domain its not possible to post all of them here! You can Google for help or contact your domain registrar! 🙂
First of all – thanks a bunch for the great tutorials you’ve made available for all of us!
Now, the problem:
I’ve setup a multisite, subdomain with w3 total cache according to your tutorials and everything works great. It’s an educational site (like edublogs) but totally free of charge (no ads), where teachers and students can create blogs. After about 5 weeks we’re now hosting 300-ish blogs and I wanted to let people use their own domains. So I set up domain mapping and that works like a charm too. But…
Whenever you create a new post, it seems that the mapped domain blog is unable to flush the cache, so it takes a couple of minutes before the post shows on the frontpage. If I turn of page cache in W3TC it works instantly, but I’d rather not, since that effects the whole network.
Have you got any thoughts on this, or even better, a solution? I’ve been googling around and it seems I’m not the only one, but I haven’t found any solutions as of yet. It only affects the mapped domains.
Best regards / Micke
There are 2 possible issues here.
1. For example.com top-level domain, backend is accessible on subdomain.network.com. In that case cache might be getting flushed for subdomain.network.com rather than example.com.
Forcing wp-admin to be accessible over example.com may work. This can be done in network-wide settings for Domain-Mapping plugin.
2. A bug in W3 total cache plugin. If your problem is not related to point #1 above, you can report a bug to W3 total cache plugin developer. They may look into it.
Thanks a lot for pointing me in the right direction. Of course it was no 1 and it sounds pretty logical when you think about it. I just thought that I had tried everything, but apparently not. And once again, thanks for the great tutorials!
Hi,
I just wanted to thank you for this explanation! Many of the how-to’s are based on earlier versions of the domain mapping plugin and are really confusing. Your screen captures and explanation were perfect and I am now up and running!
Thank you!
I own a bluehost account and I use that to run a WordPress website. – http://theopinionatedindian.com/ .
If I were to pay $13 a year, I would have the same degree of control as I previously did. But in addition I’d get featured in the WordPress reader and a bigger wordpress audience correct? And WordPress users can “Follow, Like and reblog” my posts and blogs. Is that about right?
Basically what I am asking for is, if I shell $13 a year; does that mean I enjoy the benefits of a wordpress.com user (featured in reader,etc) and enjoy the privileges that owning a domain gives you (customization and plugins, etc)
Thanks much. Cheers 🙂
The blog I need help with is theopinionatedindian.com.
It looks like your question is domain mapping service provided by wordpress.com – http://en.support.wordpress.com/domains/
This article is not related to it.
Anyway, you cannot have plugin customization option on WordPress.com even if you use their VIP hosting which costs $3750/month
Thanks mate. Yea I found out. Cheers.
Hi
i just have a question? if i create a wp multisite can i with domain mapping have 3 sites using their domain names instead on subdomains?
i would like to have:
http://www.mydomain1.com
http://www.mydomain2.com
http://www.mydomain3.com
or will it need to be
http://www.mydomain1.com
sub2.mydomain1.com
sub3.mydomain1.com
I hope this makes sense.
cheers
James
You can map subdomains to real-domains using Domain-Mapping plugin.
That way
sub2.mydomain1.com
will show up asmydomain2.com
and so on.Hey Rahul,
Thanks so much for the tuts! I’m so anxious to try nginx and will be back in the future to get that set up.
I do have a question that I haven’t been able to find an answer for regarding multisite installs that you may have an answer for.
I’m looking to set up a multisite install on a dedicated server and serve only the “blog” portion of multiple external domains. Main domains are served by another platform.
I want to be able to map each of the “blogs” to a subdirectory of the already existing domains. ex – example1.com/blog
example2.com/blog
example3.com/blog
I haven’t been able to figure out how to map a blog in a multisite install on one server or IP to a subdirectory /blog on a different server or IP.
Thanks in advance for any input or ideas.
Ideally, you should use subdomains in this case. Like blog.example1.com, blog.example2.com and so on.
You cannot map a folder to another server directly. You can although reverse proxy
location /blog
to another server. It will be complicated to setup, most likely have many side-effects and tough to scale.Thanks Rahul. Was thinking of reverse proxy, but scaling to thousands of sites would be needed.
Hi Joe,
Do you manage to get it works with reverse proxy?
I tired and it only success on first access where accessing example2.com/blog will able to load the site but all the URL link inside the contents become blog.example2.com. Any suggestion?
Hi again!
Sorry for pestering you again, but I’ve scanned the interwebs for answers, but can’t find it.
This time I’ve also followed your great tutorials and have setup a multisite for the school I work for. This time it is a subdirectory multisite residing at http://site.arstaskolan.se with all the blogs in http://site.arstaskolan.se/abc and so forth.
For some of theese sites I need domain mapping and I’ve followed your instructions and it works… almost. The problem I’m having is with the media of the mapped domains. It doesn’t show. If I switch back to the original name everything works. It seems like there’s a problem with my conf in sites-available, but I can’t just find out what’s wrong.
Here’s a living exampel. http://site.arstaskolan.se/ccarsta and the mapped http://ccarsta.se
No images are visible. If I click media in the admin panel, still no images, but if i click edit on the image, it shows up. But if I switch back to the original site.arstaskolan.se/ccarsta everything works as it should.
If I manually edit a post where I’ve inserted an image within the mapped domain and add /wp-content before /files in the URL it works.
Do you have any idea how to solve this? Would it help if I submitted my conf file?
Thanks in advance! /Micke
I had a look into HTML and saw broken image URL is missing sitename.
For ccarsta. se/files/2013/09/image21-150×150.jpg
Working link is – http://ccarsta.se/ccarsta/files/2013/09/image21-150×150.jpg
I think for mapped domain there is an issue with file-paths.
You can put your site config on pastbin or gist.github.com. I will have a look at it.
Man, I didn’t see that you had responded. I’m still having this problem, so if You’d like to take a look at my site config, that would be great.
Thanks in advance! /Micke
https://gist.github.com/anonymous/68caceb6c935e7120a60#file-sites-enabled-nginx-subdir-multisite
Are you trying to use WordPress-Multisite with Subdirectory and Domain Mapping together?
Also domain ccarsta.se doesn’t appear to be “mapped”. Its simply redirecting to http://site.arstaskolan.se/ccarsta/.
Hi again
No, that URL is live, so I hade to remove the mapping. I’ve got another domain that’s mapped on the same multisite though.
http://viharkulorihjartat.se – which is mapped to http://site.arstaskolan.se/viharkulorihjartat
If I upload an image the file is uploaded correctly, but doesn’t show in the media library (shows as broken image) inside WordPress. And exactly like you stated earlier there’s something wrong with file-path.
This is the broken image which should be displayed in the test post I made on that blog.
http://viharkulorihjartat.se/files/2014/01/Martin-F-bw.jpg
If I add to the URL like this (as you did in your earlier reply) it works
http://viharkulorihjartat.se/viharkulorihjartat/files/2014/01/Martin-F-bw.jpg
Do you have any idea on how to solve this?
Best regards / Micke
Try this fix:
1. Go to MU Dashboard >> Sites Menu
2. Click “Edit” link for site. You will see 4 tabs.
3. Click “Settings” tab.
4. Find “Upload Path” setting and add your site name as prefix.
It might work. Atleast for new upload.
If not, you need to play with nginx mapping config. Or better use wordpress-multisite in subdomain mode which makes domain mapping very easy.
Hello, I’m studying this configuration.
I’m going to do a blog network with wordpress multisite and the plugin “WordPress MU Domain Mapping” to get all the main.com blog / site on site.com. I have some questions.
To do this configuration, you need a multi-domain hosting plan?
Or just a plan that does not support multi-domain?
If I should take from one provider to all top-level domains without hosting plan configuring the DNS. And then you took another provider with the main domain hosting space (does not support multi-domain). The configuration work?
With the “WordPress MU Domain Mapping” in the address bar will appear main.com / or site.com site? And in the paths of the images?
Thank you very much!
– Alessandro from Italy 🙂
I think you are talking about cPanel/Apache world.
This article is part of Nginx series – http://rtcamp.com/wordpress-nginx/tutorials
I don’t think any shared-hosting plan will give you SSH and Nginx access. You can try things on VPS/dedicated hosting e.g. digitalocean
I’ve been trying to get domain mapping working in localhost with no luck for the past few days now. I’ve even upgraded from 4.0 to 4.0.1 with no luck.
Below is the error that I get in localhost.
And this is line 122.
Sorry but I do not have any idea about Windows and looks like you are using Windows machine.
I was getting the error because I was using localhost.
Thanks for update and sharing solution. 🙂
Hi,Rahul, it is so luckly I find your blog here, because I am already in trouble with the sub domain redirection in several days. I followed all solution include urs here, but the problem is still like this: all the sub.mydomain.com just redirect to the http://www.mydomain.com, may I have some clues from you?
Can you send your nginx config via https://gist.github.com/ or http://pastebin.com/ ?
Looks like there is some issue with config.
Hi,
Thank you very much for your tutorial. I never thought I could make it…
or almost.
Now I have my blogs that I can access at http://myblogs.com but not at http://www.myblogs.com
any idea on how to fix these www ?
I have domain names at name.com where I set up a A record to the IP of my server at my hostprovider (Bluehost)
thank you very much for your help and for making things easy for newbies
Try this post – http://rtcamp.com/tutorials/nginx/www-non-www-redirection/ for www redirection problem.
Hi Rahul,
We are migrating a bunch of separate websites in our non-profit organization to a multisite installation. We have multiple domains (e.g. mynonprofit.org, mynonprofit.ca, etc). Each of those have multiple cities (e.g. nyc.mynonprofit.org, denver.mynonprofit.org, toronto.mynonprofit.ca, montreal.mynonprofit.ca, etc.). All of the subdomains under mynonprofit.org are in Multisite now.
We are working towards including the Canadian sites in the network in this second phase, starting with, for example, toronto.mynonprofit.ca. The other Canadian sites exist as either static websites or single WP installs which must be maintained until they are migrated to the network. This means I can’t add *.mynonprofit.ca to the multisite. What is the best strategy to effect this?
Many thanks,
KSP
Even if toronto.mynonprofit.ca is hosted somewhere as normal site or a wordpress site, you can create toronto.mynonprofit.ca in your multisite.
All you need to do is add an entry in your
/etc/hosts
like1.2.3.4 toronto.mynonprofit.ca
. Where 1.2.3.4 is IP for new server.This way you can work on new-site without putting current site under maintenance.
You may find our migration guide useful – http://rtcamp.com/wordpress-nginx/tutorials/plugins/migration-with-zero-downtime/
Hello Rahul,
Thank you for your quick response. I like the idea of the hosts file. What we were thinking was to create, toronto.mynonprofit.
org
and once the data was migrated over then domain map that to toronto.mynonprofit.ca
. For domain mapping do we need to map the domain (*.mynonprofit.ca) or can we map a sub-domain (toronto.mynonprofit.ca)? Does the plugin handle that?Many thanks,
KSP
I could not understood your workflow clearly.
All I can say that you can change mapped domain anytime. Also map any number of domains to a site in multisite network.
You can check plugin details at http://wordpress.org/plugins/wordpress-mu-domain-mapping/
Your tutorials have been amazing! I used them to setup WMPU, with mixed domain and subdomain sites a couple of weeks ago digitalocean (dot) com and they work great!
Unfortunately it seems I have done something different with my second WPMU install. I honestly thought I followed all of the same instructions, but going to my second domain simply shows a “Welcome to nginx!” page. What step did I miss?
There are many things which could go wrong!
1. Do you have both WPMU on same machine?
2. If yes, are they sharing IP addresses? Hint: listern directive in nginx config
3. Do they use wildcard DNS? Hint: server_name in nginx config
If possible, put all your config at pastebin and create a support request in forum https://rtcamp.com/support/forum/wordpress-nginx/
1.) Yes they are on the same machine (a VPS at Digital Ocean).
2.) Yes they share an IP Address. Where do I find the nginx config? I used ee to install it.
3.) There is a wildward, for the subdomain (at least that was the intent).
The DNS is something that is different from my other WPMU install (also using ee). Here is the Zone file for the secondary domain.
$TTL 1800
@ IN SOA NS1.DIGITALOCEAN.COM. hostmaster.riverviewinternational.org. (
1386784836 ; last update: 2013-12-11 18:00:36 UTC
3600 ; refresh
900 ; retry
1209600 ; expire
1800 ; ttl
)
IN NS NS1.DIGITALOCEAN.COM.
NS NS2.DIGITALOCEAN.COM.
NS NS3.DIGITALOCEAN.COM.
@ IN A 162.243.138.176
* CNAME @
Looks like there is an issue with nginx config.
I assume you have created 2 nginx config using easyengine (ee)
Can you paste them at pastebin?
Please do not use comment threads for pasting long codes. You can use support forum instead – https://rtcamp.com/support/forum/wordpress-nginx/
OK, I found the nginx configs. I am going to compare it to the working domains.
Please pay special attention to “listen” and “server_name”.
Also, you can have 2 WPMU with subdomains easily but you will need to manually update “server_name” if you want to map external domain using domain-mapping plugins.
Thank you so much for your guidance.
http://pastebin.com/VQVdLygF
http://pastebin.com/ChwwD2Ym
Your both config are suitable for multisite with subdomains.
To have domain-mapping, you will need to either uncomment
listen 80 default_server;
or add new domains toserver_name
line.If you need domain-mapping on both, for large network uncomment
listen 80 default_server;
and for small network, in its nginx config, manually add mapped domains toserver_name
.If you can get 2 dedicated IP addresses then you can use each of them for domain-mapped networks.
Is there anyway of setting this up in conjunction with cloudflare?
Cloudflare works at DNS level. Not sure what do you mean exactly. Please elaborate so we can provide proper help.
I currently have the cloudflare plugin that automatically creates a CNAME record when a new site (subdomain) is created – this is working well. What I want to do is to be able to map a domain to the subdomain – is that possible?
“CNAME record for new subdomain” seems wrong idea. Why not use “wildcard” records?
About mapping-domain, I guess you want to automate that too. I guess you need to check http://wordpress.org/plugins/wordpress-mu-domain-mapping/ plugin’s code/guide/support for that.
Because wildcard records at cloudflare is a feature of the $200 per month subscription package. The basic cloudflare subscription which allows me to add CNAME records via the wordpress plugin is free
Sorry but I do not use cloudflare so can’t help on the topic.
May be you need to add mapped domain also to cloudflare (reference).
By the way thanks for giving me another reason to stay away from cloudflare!
Nice tutorial, but before I start implementing it I want to ask:
If this will work on shared hosting?
We never used wordpress on shared hosting. Better to go with DigitalOcean VPS which starts from $5/month only and can accomodate many sites.
Also, please note that some shared hosting companies might suspend your service if you setup WPMU there.
Thanks Rahul! Im very interested about DO and will search little to check if it can handle my needs.
btw.. Can I host few (3) sites with x100-200 daily visits each, on DO with separate wp installs for 5$?
You can most many more sites with thousand of daily visits.
A lot depends on wordpress themes and plugins you choose because many times, bad codes are responsible for issues.
Im up and running on Digital Ocean. But again my new site is showing server not found.
I used automatic wp instal via DO.
Idk what is wrong with my setup:(
I think DO default wp install comes with Apache.
Just use minimal setup and then run first 2 commands from easyengine page http://rtcamp.com/easyengine
After that install wordpress-mu with subdomain or subdir using a command from https://rtcamp.com/easyengine/docs/
In step 2: Unable To Install Python Software Properties if continue than I have this: Unable To Create Nginx Configuration File For mydomainhere.com
p.s. installed ubuntu 12.04.3 x32
I instaled all from here: https://rtcamp.com/easyengine/docs/system/install/ and all went good instead of last one 🙁 nginx: [emerg] could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32
You can delete the above comments (or move to another post together with this one), I changed _size to 64 (withunncommenting that line in nginx.conf) but my site is now showing:
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required…. etc..etc..
Site is ON! ..but new created site isn’t working (sub-domain), same again… Ideas?
For sub-domains, you will need wildcard DNS record. Did you create wildcard record?
I didn’t set wildcard record but I mapped that subdomain (using this article) and now all is working fine:). Is this fine or I will still need setting wildcard domain?
You will need wildcards only if new sites creation is allowed publicly.
For closed network, whenever you create a subdomain site, you can add it to server_name manually if you run into any issues. Or if server block is default, you may only need to create A record for that particular subdomain.
1. I will not allow new sites creation (Im using it for my sites only), so here should not be a problem ?!
2. Is there a step by step how to do so?
– All i working fine when I type mymaindomain.com or seconddomain.com but when I add http://www.mymaindomain.com ..etc it gives me… Server not found.
I want to use only non www, how can I redirect www to non www?
For www to non-www redirect, you can use code-block from https://rtcamp.com/tutorials/nginx/www-non-www-redirection/#all-domains
Hello Rahul,
I have a multisite installation and multi domain mapping plugin through the Domain with subdirectory.
I have a main site “monsite.com” and 3 domain names, “monsite.es”, “monsite.uk” and “monsite.fr”
I want to manage the 3 domain names on my main domain.
I followed the installation tutorial and apparently everything works, except that when I’m on monsite.fr or other, I do not have the url with my page like monsite.fr/ presentation / but only mysite.fr !
where a poor ranking because I no longer unique url for each page.
I myself may be planted in the settings for the plugin or other …
what is my mistake?
I checked “use domain mapping page” and “redirect administration …” in the domain options.
thank you for your answer
I think you have clocked the domain. Also, if you want domain A to redirect to domain B, you don’t need domain mapping.
You should use domain redirection either provided by domain registrar as a feature or at nginx level.
Hello, Rahul I Do All Setup Almost Ten Time On Main Domain, Like Domain.Com But After Creating New Site Backend & New Site Subdomain Not Found “Error 404” What I Do Next Please Help Me & Thanks! For Posting Grate Tutorial.
Did you added wildcard record to your DNS which is pointing to your server?
Hi Rahul,
Thank you very much for a great tutorial on Domain Mapping for Multisite. I have been stuck with this issue for a while until I found your post. I have followed all the steps but when I click on external.domain.com it point to my host. Is it because I asked my external.domain.com to point to the IP of my host server? Where have I done wrong?
Best regards,
JN
Sorry to say I couldn’t understand your problem. Please explain clearly “what is expected” and “what is happening”?
I am helping a non-profit organization and it has an external domain called beta.external.com. I have a wordpress multisite hosting on domain mydomain.com. In there I have a site called beta.mydomain.com. I want that site to server the external beta.external.com. So here is what I have done.
1. I asked the admin of beta.external.com to point to my server IP address where it’s hosting mydomain.com
2. I then follow your steps and able to setup domain with site ID of beta.mydomain.com to map to beta.external.com
But here is what happen I am done with the mapping.
type beta.external.com will take to my generic page from my hosting company. Which it actually meant it pointed to my server IP address
Type beta.mydomain.com now does the same thing by point to the generic page from my hosting. This was serving correctly before.
There must be a small step I have missed it some how.
Sorry for delay Joe. Thanks for giving details.
I think nginx
server {..}
block for*.domain.com
is notdefault_server
.Just look for a line like
server_name *.domain.com;
and add a linelisten 80 default_server;
on top it.You also need to remove any other occurrence of
default_server
for port 80 form elsewhere.This will make your multisite setup as default for your server.
For reference – you can check some commented line in nginx config here – https://rtcamp.com/wordpress-nginx/tutorials/multisite/subdomains/minimal/
after mapping domain, who gets the seo benefit, the external domain or the subdirectory of the main domain?
In my opinion, the domain you see in browser’s address bar should get indexed in search engine result pages.
Other domain(s) will be redirected.
Hi Rahul,
Currently i setup multisite in my local (Development) server like this way
nl.dev.domain.com — For Netherlands language
de.dev.domain.com — For Dutch language
ft.dev.domain.com — For France language
Now, It’s time to go live
Please Note:
I already purchased domins like http://www.domain.de , http://www.domain.nl, http://www.doamin.fr etc…
so, When i upload site from local to live, I think i will follow below steps.
1) http://www.domain.in — primary Domain
2) Create Subdomain of primary domain for e.g. —> de.www.domain.in — site id -2
—> nl.www.domain.in — site id -3
—> fr.www.domain.in — site id-4
3) Install domain mapping plugin as describe in above tutorial
4) Map domains with Site ID. 2 -> http://www.domain.de
5) Map domains with Site ID. 3 -> http://www.domain.nl
6) Map domains with Site ID. 4 -> http://www.domain.fr
So, My Questions is:
1) Am i going on right way?
2) is it necessary to create sub domains first, And then with the help of domain mapping — map to 3rd party domain ?
3) What are the steps to upload current’s multisite structure to Live server – I mean how should i follow search replace scripts.? Should i search and replace url with Sub domain or Actual domain ?
Answers:
1) Yes. You may avoid
www
prefix everywhere.2) Yes. You can later remove subdomain references by editing database or going to http://example.com/wp-admin/network/site-settings.php?id=SITE-ID
3) If your current multisite is perfect, simply upload files/db and then make changes to site from http://example.com/wp-admin/network/sites.php (you can add domain mapping after uploading site). You can search replace with anything. I will prefer using actual domain.
Also, if all sites have same content in different language, it will be better to use WPML plugin.
I Can’t Add or See My New Domain!!
I have WP Multisite installed on my cPanel. For some reason I can’t see or add my new site even after installing
this plugin (and doing the required.)
I’ll go step by step, because I guess I may have missed something.
1. Took a backup and disabled all my plugins
2. Installed and network activated the plugin mentioned above
3. Moved sunrise.php into wp-content
4. Added define( ‘SUNRISE’, ‘on’ ); to wp-config.php file
5. Then Under Domain Mapping (Network Admin>>Settings>>Domain Mapping) I added my server IP Address. (I also tried the CNAME Record way. Nothing happens even after that. Waited for more than 2 hours.)
6. Under ‘Domain Options’ the ‘user domain mapping page’ is checked.
7. Tried adding the new site. Doesn’t get added. Gives this error – http://puu.sh/7rdHc.jpg
More screenshots
http://puu.sh/7rdN6.jpg
http://puu.sh/7rdPC.jpg
http://puu.sh/7rdXR.png
http://puu.sh/7re3e.jpg
http://puu.sh/7re5B.jpg
http://puu.sh/7rdHc.jpg
Did I do something wrong? What am I missing here? Please help asap.
Thanks in advance.
There are many mistakes in your workflow.
You are confusing mapped domains with site-names. In http://puu.sh/7re5B.jpg you need to specify a sitename with letters (a-z) and numbers. You can see same requirement there. Later on you can add mapped domain to that site from domain-mapping page.
Hi Rohit,
Thanks for replying. What’s funny is that the WP MU Domain Plugin author couldn’t identify that silly (dot) mistake. I had found out about it by myself (a few days back.. You took a while to reply.) Any which ways, could you go through this thread and spot what I may be doing wrong. It’s a bit lengthy but I’m sure you will be able to point out what I maybe missing and also simplify the ‘domain mapping’ steps, so that it becomes easier for beginners like me.
Thread on WP Support – http://wordpress.org/support/topic/cant-add-or-see-my-new-domain?replies=1
Thanks in advance!
This answer is correct – http://wordpress.org/support/topic/cant-add-or-see-my-new-domain?replies=1#post-5337695
You need to create a subdomain/sub-site and later on map a domain to it.
And by the way, this is Rahul here. Not Rohit! 😛
Oops, my bad!
Sure, I’ll follow that. Thanks for the help.
I dont understand.. Why this dont work for me? ALL domain I do mapping are redirected to the root domain.. Why? 🙁