• Hi there,

    I need to migrate my WPMU to a new server and I have a doubt; My scenario is: “Domain / subsites/,” do I have on the new server to create Vhosts to other sub-sites? Or my Top-domain’ Vhost is enough to make others follow ?

    Thank you.

    • This topic was modified 8 years, 4 months ago by kameleon1er.
Viewing 1 replies (of 1 total)
  • Thread Starter kameleon1er

    (@kameleon1er)

    Ok, I’ve found my own answer : Yes you have to create one Apache Vhost / domain to redirect external domain in you WordPress-MU.

    Vhost example :

    <VirtualHost *:80>
            ServerAdmin    your_contact@your_domaine
            ServerName     domaine_to_redirect.com
            ServerAlias    www.domaine_to_redirect.com
    
            DocumentRoot /var/www/repertory_of_you_mu-site_installation
                    <Directory />
                    Options FollowSymLinks
                    AllowOverride All
            </Directory>
            <Directory /var/www/repertory_of_you_mu-site>
                    Options FollowSymLinks
                    AllowOverride All
            </Directory>
    
            ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
            <Directory "/usr/lib/cgi-bin">
                    AllowOverride None
                    Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                    Order allow,deny
                    Allow from all
            </Directory>
    
            ErrorLog ${APACHE_LOG_DIR}/error.log
    
            # Possible values include: debug, info, notice, warn, error, crit,
            # alert, emerg.
            LogLevel warn
    
            CustomLog ${APACHE_LOG_DIR}/access.log combined
    </VirtualHost>
    
    • This reply was modified 8 years, 4 months ago by kameleon1er.
Viewing 1 replies (of 1 total)
  • The topic ‘migrating WPMU VPS-a > VPS-b domain mapping plugin’ is closed to new replies.