Hi Guys,
Thank you both for your reply. The problem I’m having is this. When I setup the site and folder for abc.com in the root and put the css, js, images etc. in that folder. Non of my references for image, css, and js etc. are working when viewing the website. So for example the following is not working:
http://abc.com/css/style.css
I get a 404 file not found. The only way it works is if I call it like this:
http://www.abc.com/abc.com/css/style.css
I tried setting the global var $assign_to_config[...] values but I’m getting this error:
Site Error: Unable to Load Site Preferences; No Preferences Found
The only way I got it to work was to setup a condition and rule in the .htaccess file for the following:
RewriteCond $1 \.(css|js|swf|gif|jpe?g|png|ico)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /abc.com/$1 [L]
Not sure which way is the right way.
Thank you,
Mike