Title: Multisite does not create new sites
Last modified: August 20, 2016

---

# Multisite does not create new sites

 *  Resolved [karlalopez](https://wordpress.org/support/users/karlalopez/)
 * (@karlalopez)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/)
 * I’ve installed the 5 Minute Installation in my server and turned it into a multisite.
 * Everything seems to be working but it does not create other sites. When I add
   a new site, everything seems fine, it sends me the email confirmation and the
   new website is shown in my top admin bar. But the site does not show up: the 
   URL does not work (Internal server error [http://obaiti.com/mais](http://obaiti.com/mais))
   and when I click in the admin bar link the Dashboard does not load (internal 
   server error). The main website works perfectly.
 * In the Network Dashboard it does not account the new site as well. It says 1 
   user, 1 site.
 * I decided to run the same file in my localhost and it shows the exact same problem.
 * I downloaded the latest file at [http://wordpress.org.br/](http://wordpress.org.br/)
 * Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)

 *  [wpfranner](https://wordpress.org/support/users/wpfranner/)
 * (@wpfranner)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631677)
 * Sounds like a .htaccess problem.
 * If you go to [http://www.yourdomain.com/wp-admin/network/sites.php](http://www.yourdomain.com/wp-admin/network/sites.php),
   is the site you created on the list?
 * Are you sure that the .htaccess file is set up OK and that your Apache is set
   to recognize it?
 *  Thread Starter [karlalopez](https://wordpress.org/support/users/karlalopez/)
 * (@karlalopez)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631696)
 * There was something wrong with my htaccces. I changed to what was instructed 
   in the network set up but the problem still there.
 * Now, the second website wan shown on the network dashboard but still nothing 
   there in the URL.
 * I tried to delete it. The site does no show in the [http://www.yourdomain.com/wp-admin/network/sites.php](http://www.yourdomain.com/wp-admin/network/sites.php),
   but still counting in the Admin Dashboard page: 1 user, 2 sites.
 * Really weird.
 * Note: Everything I did in my server, I did in my localhost. In localhost the 
   problem is fully fixed. It might be something to do with Apache, but I have no
   idea how to fix it. Help!
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631701)
 * Internal server error usually means your htaccess isn’t being correctly parsed.
 * Do you have AllowOverride set to ALL in your httpd.conf?
 *  Thread Starter [karlalopez](https://wordpress.org/support/users/karlalopez/)
 * (@karlalopez)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631704)
 * Oh, now you’re really ahead of me. I have no idea how to find an answer your 
   question 🙂
 * This is what I have in my htaccess file (server and localhost – dont work in 
   server, works in localhost):
 * >  RewriteEngine On
   >  RewriteBase /wordpress/ RewriteRule ^index\.php$ – [L]
   > # uploaded files
   >  RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-
   > files.php?file=$2 [L]
   > # add a trailing slash to /wp-admin
   >  RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin
   > $ $1wp-admin/ [R=301,L]
   > RewriteCond %{REQUEST_FILENAME} -f [OR]
   >  RewriteCond %{REQUEST_FILENAME} -d
   > RewriteRule ^ – [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*)
   > $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php[
   > L]
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631706)
 * Is WordPress installed in the /wordpress/ folder?
 * If not, change that to this:
 *     ```
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
   
       # uploaded files
       RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
       RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
       RewriteRule . index.php [L]
       ```
   
 *  Thread Starter [karlalopez](https://wordpress.org/support/users/karlalopez/)
 * (@karlalopez)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631709)
 * It WAS. Not anymore, that’s why I decided to go with a fresh install. But I think
   I copied the old htaccess file. THAT was stupid. I did what you said and everything
   is fine now!
 * Thank you very much.
 * I’m just curious: How does a htaccess file look like when its not a Multisite?
   Just a regular blog?
 * Thank you again!
 *  Moderator [Ipstenu (Mika Epstein)](https://wordpress.org/support/users/ipstenu/)
 * (@ipstenu)
 * 🏳️‍🌈 Advisor and Activist
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631710)
 * The default one looks like this: [http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29](http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29)
 * At this point, I think I’ve accidentally memorized what’s right and wrong. o.
   O
 *  Thread Starter [karlalopez](https://wordpress.org/support/users/karlalopez/)
 * (@karlalopez)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631743)
 * Thank you again!

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Multisite does not create new sites’ is closed to new replies.

## Tags

 * ["internal server error"](https://wordpress.org/support/topic-tag/internal-server-error/)
 * [auto-install](https://wordpress.org/support/topic-tag/auto-install/)
 * [brazil](https://wordpress.org/support/topic-tag/brazil/)
 * [multisite](https://wordpress.org/support/topic-tag/multisite/)
 * [português](https://wordpress.org/support/topic-tag/portugues/)

 * In: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
 * 8 replies
 * 3 participants
 * Last reply from: [karlalopez](https://wordpress.org/support/users/karlalopez/)
 * Last activity: [14 years, 1 month ago](https://wordpress.org/support/topic/multisite-does-not-create-new-sites/#post-2631743)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
