Everything runs smoothly... I can create new blogs and update etc etc!
The catch: All blogs end up with a /wpmu trailing the domain name. I have the DNS wildcard set so newblog.domain.com is resolved but it gives me a directory view (with all the directories under public_html). Clicking on the wpmu folder (or keying it straight in the url) brings me to the correct site.
When I try to create a new blog already logged in as admin the signup page states the following:
Here are the blogs you already have:
* mydomain.com/wpmu/
...also with the trailing /wpmu/
What am I doing wrong? I've searched high and low on these forums for hours now but cannot find any direct hit.
My .htaccess
RewriteEngine On
RewriteBase /
# Rewrite http://www.domain.com to domain.com
RewriteCond %{HTTP_HOST} ^www\.(.*)
RewriteRule ^(.*) http://%1/$1 [R,L]
#uploaded files
RewriteRule ^(.*)?/?files/(.*) wp-content/blogs.php?file=$2 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
If the answer is clearly out there... please point me in the right direction.
Thanks!