ERROR: Visiting ServTWO.net it gets redirected to:
http://ServONE.es/wp-signup.php?new=ServTWO.net
When ServTWO should be redirected to its own independent wpms install.
I have been following wp instructions and documentation and i have found this forum post that contains what I was just trying to do:
http://wordpress.org/support/topic/multiple-multisite-installs-on-single-ip?replies=28
So i have edited my VirtualHosts in my apache2 server to have this configuration:
#
# ServONE.es (/etc/apache2/sites-available/MyWpVH)
#
<VirtualHost ServONE.es>
ServerAdmin admin@mydomain.com
ServerName http://www.ServONE.es
ServerAlias ServONE.es
ServerAlias *.ServONE.es
RewriteEngine On
RewriteOptions Inherit
# Indexes + Directory Root.
DirectoryIndex index.php
DocumentRoot /home/ServONE/wordpress/
# Logfiles
ErrorLog /home/ServONE/logs/error.log
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /home/ServONE/wordpress/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
#
# ServTWO.net
#
<VirtualHost ServTWO.net>
ServerAdmin admin@mydomain.com
ServerName http://www.ServTWO.net
ServerAlias ServTWO.net
ServerAlias *.ServTWO.net
RewriteEngine On
RewriteOptions Inherit
# Indexes + Directory Root.
DirectoryIndex index.php
DocumentRoot /home/ServTWO/wordpress/
# Logfiles
ErrorLog /home/ServTWO/logs/error.log
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /home/ServTWO/wordpress/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
</VirtualHost>
Could you please help me to notice what may be wrong?
Thank you.