Hi All,
I've recently installed the latest stable build of Mu on a windows 2003 server, running apache and the rest of the needed stuff.
Everything seems to be well, as htaccess works, and is re-writing the urls, and i've tested it seperately too, however when it does, the pages look like they're missing CSS files, and the source of the file on the page is pointing towards theserver/theblog/wp-admin , and it doesnt seem to be re-writing back to theserver/wp-admin. I'm pretty sure htaccess is right and should be re-writing these.. However if i create a folder under theserver/ with the name of the blog, and dump all the original mu files in it, it works perfectly.. but i cant be doing that for every blog created.
my htaccess is as follows
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,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]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
I apologise for not being able to provide a link to the troublesome blog, but it's on an internal server, and cant be accessed via the outside world.
I'd appreciate a bit of help! cheers!