Local Multisite httpd.conf question
-
Hello:
I’m trying to get multisite working, using the subdomains option; I spent days with xampp, I’m now trying wamp.
I would like to have my main domain, for which I’m using: localhost.localdomain. I’ll also have a test site for a second domain.
Most tutorials suggest that I should start with two virtual host entries, something like:
<VirtualHost 127.0.0.1>
DocumentRoot “C:/wamp/www”
ServerName localhost
</VirtualHost><VirtualHost 127.0.0.1>
DocumentRoot “C:/wamp/www/urbangiraffe.com”
ServerName local.urbangiraffe.com
ErrorLog logs/urbangiraffe_error.log
</VirtualHost>What I don’t understand is: is the first entry supposed to point to my main blog? Or will it just be a not very functional apache default page, and the second entry is supposed to be for the main WP site. In that case, the second entry should look like:
<VirtualHost 127.0.0.1>
DocumentRoot “C:/wamp/www/localhost.localdomain”
ServerName localhost.localdomain
ErrorLog logs/localhost.localdomain.log
</VirtualHost>If the above is correct, then do I need a directory called: C:\wamp\www\localhost.localdomain\
into which I put the wordpress folder? Will this resolve to: localhost.localdomain?Thanks for any replies.
The topic ‘Local Multisite httpd.conf question’ is closed to new replies.