Is this possible with RC4?
I've tried to install MU into my website http://www.name.com/wpmu/
Everything is ok but when i try to load this address browser is redirected to
name.com/wpmu/
and then to name.com
...and after all to http://www.name.com
end.
Why?
This is my .htaccess file (I've also put <directory> directive at the end).
I've also tried to remove it but it says "this blog does not exist try name.com/wpmu"
Is there a solution to this problem?!
RewriteEngine On
RewriteBase /wpmu/
# 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]
<Directory /opt/muwp>
AddType application/x-httpd-php .php .php3 .phtml
AddType application/x-httpd-php-source .phps
php_admin_value open_basedir /opt/muwp
Options None
Options +Indexes
Options +Includes
Options +FollowSymLinks
AllowOverride All
order deny,allow
deny from all
allow from all
</Directory>