I installed wpmu on my website. Followed all instructions and asked isp admin to set the server's settings exactly as explained in the readme file inside the wpmu folder I downloaded.
everything seems to be fine exept for the fact that if I type the address with www in front, it goes back to the main website's homepage instead of the wpmu homepage.
here are the addresses:
http://pigmotel.com/rooms/ (working)
http://pigmotel.com/rooms (working)
http://www.pigmotel.com/rooms (redirects here: http://pigmotel.com//home/pigmotel/public_html/rooms)
http://www.pigmotel.com/rooms/ (redirects to http://www.pigmotel.com)
I have NOT touched the original htaccess file inside the /rooms/ directory, wich is the following:
RewriteEngine On
RewriteBase /rooms/
# 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]
My server is a Linux with cpanel and web host manager, but I asked the admin to set apache and vhosts as stated in the readme file.
Please help! I need to put the website public by next week!
Thank you very much.
Simon