Hi,
I have added the following line the wp-config.php of my parent blog, but my site is still offering child blog when it hits an unknown sub-domain name. Why?
//define( 'NOBLOGREDIRECT', '' );
Hi,
I have added the following line the wp-config.php of my parent blog, but my site is still offering child blog when it hits an unknown sub-domain name. Why?
//define( 'NOBLOGREDIRECT', '' );
Because you have // in front. That means "This line is a comment"
Change it to define( 'NOBLOGREDIRECT', '' );
ah, I see
You must log in to post.