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.