I am having some small problem with page redirects. When clicking a link that points to a page such as http://user.blogserver.mydomain.tld/about/ I get a 404 message. Any of my users can log in and be taken to their management page. The blogs themselves are viewable. However links such as "about", "archives", and "categories" do not work on any users webpage.
The server log reports the following
[Thu May 03 15:08:45 2007] [error] [client 192.168.0.22] File does not exist: /var/www/about, referer: http://user.blogserver.mydomain.tld/
Even though the redirects to the subdomains are working, redirects to pages on those subdomains are not. Here is my htaccess file:
RewriteEngine On
RewriteBase /
AddType x-mapp-php5 .php
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
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]
Thank you for the help!