Quote Originally Posted by twi View Post
I can't access my sites when I use: "sites1.net" and "site2.net" at multisite.
They are only accessible when I type "www.site1.net" and "www.site2.net"

Can anyone provide some input in this?

I remember Design75 mention something about fixing this at the .htaccess files.

The way I tried to correct this was to create 2 extra "config_sites" files without the "www." in it. It does display the sites but seems to create errors in Paypal and UPS mods. (Please see my previous post for files details)
Is this the way to correct the www. problem or is there a different way?
For the greater good of everyone with this problem and to give back after receiving all the help in zencart forum from various members, I have found out the solution based on others input and solutions given before:

In solving the redirect problem the easy way instead of creating 2 config files, I have added the following code to the ".htaccess" file at the zencart root:

RewriteCond %{HTTP_HOST} ^yoursite.net [NC]
RewriteRule ^(.*)$ [url]http://www.yoursite.net/$1 [L,R=301]

The above code will redirect traffic from the "non www" url to the "www" url

Hope this will help anyone with the problem I was experiencing.