hello all,
I have set up a website which runs on a private CMS hosted on H-Sphere parallels.
the default root folder to serve the domain is something like this:
/hsphere/local/home/.../example.com
now, my index.php resides in:
/hsphere/local/home/.../example.com/home/public/index.php
what I want is when users enter the domain name i.e.
http;//www.example.com
the index.php will be served and the URL must be transparent
I have set up an htaccess file in the root directory that goes like this:
RewriteRule ^/$ /home/public/index.php
however, it doesnt work. I'm getting the site without CSS and without internal links etc. (internal links lead to 404 error) if I remove the htaccess I'm getting the same.
In my CP, Indexes is set to "fancy" (other options are: "enabled", "disabled")
I cant seem to figure out the problem. Is my htaccess rule accurate?
thanks for the helpers...