I installed WP MU yesterday and had an issue with accessing the site after the install went through. Everything seemingly went through with no issues, but when the sign in for the admin panel came up, it just stayed on the same screen after entering the user/password. So, I then couldn't access the 'homepage' and figured that I'd ask my hosting company to see if they could point me in the right direction. Well, the Dreamhost support person was great and basically let me know that everything seems setup correctly except for the .htaccess file. So, after he disabled it, I was able to access the admin panel and the homepage. So, there's obviously an issue with the htaccess. He said that he couldn't help me specifically because it is outside the scope of the hosting support, but suggested that I ask on the discussion boards.
So, I've posted over at WP MU and haven't had anyone respond yet as well as the board over at my hosting company, but I'm still waiting. Can anyone give me a tip on how to fix my access file?
Quote:
RewriteEngine On
RewriteBase /blogs/
#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>
|