Hello
I want to create a network of my blogs. But I am stuck right now.
I did everything according to instructions, and the main WP install works fine. BUT I cannot make the subdomains work. Instead I get the message "503 Service Unavailable". I asked my web host if this was due to the wildcards being incorrectly configured, but they said that in fact 503 indicates that the * subdomain is correct and that it probably was due to the .htaccess file.
Any idea what I can do to fix this?
My current .htaccess that I got off of Internet since the one I copied during the install procedure didn't work either:
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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]