Title: Please help with basic multisite subdomain setup
Last modified: August 30, 2016

---

# Please help with basic multisite subdomain setup

 *  [ivoronline](https://wordpress.org/support/users/ivoronline/)
 * (@ivoronline)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/please-help-with-basic-multisite-subdomain-setup/)
 * Using WordPress Multisite I have created [http://books.ivoronline.com/](http://books.ivoronline.com/)
   but when i use this link i get error This webpage is not available ERR_NAME_NOT_RESOLVED.
 * I have used cPanel to add
    *.ivoronline.com books.ivoronline.com that point to/
   public_html and I have setup wp-config.php and .htaccess as shown below.
 * WHAT AM I MISSING?
 * wp-config.php
 *     ```
       define('WP_ALLOW_MULTISITE'  , true);
       define('MULTISITE'           , true);
       define('SUBDOMAIN_INSTALL'   , true);
       define('DOMAIN_CURRENT_SITE' , 'ivoronline.com');
       define('PATH_CURRENT_SITE'   , '/');
       define('SITE_ID_CURRENT_SITE', 1);
       define('BLOG_ID_CURRENT_SITE', 1);
       /* That's all, stop editing! Happy blogging. */
       ```
   
 * .htaccess
 *     ```
       AllowOverride All
       Order allow,deny
       allow from all
   
       # BEGIN WordPress
       <IfModule mod_rewrite.c>
   
       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]
       RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
       RewriteRule ^(.*\.php)$ $1 [L]
       RewriteRule . index.php [L]
   
       </IfModule>
       # END WordPress
       ```
   

Viewing 1 replies (of 1 total)

 *  [Vaughan](https://wordpress.org/support/users/m0nty/)
 * (@m0nty)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/please-help-with-basic-multisite-subdomain-setup/#post-6221433)
 * Hi Ivor,
 * If you are using multisite, you should only require the wildcard subdomain *.
   domain.com
 * You shouldn’t need to create the other subdomain for your site.
 * so I would remove the books.domain.com subdomain as you shouldn’t require that.
 * Hope this helps

Viewing 1 replies (of 1 total)

The topic ‘Please help with basic multisite subdomain setup’ is closed to new replies.

 * In: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
 * 1 reply
 * 2 participants
 * Last reply from: [Vaughan](https://wordpress.org/support/users/m0nty/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/please-help-with-basic-multisite-subdomain-setup/#post-6221433)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
