Anyone know why my homepage wont load with the www prefix.
Links such as
www.mysite.net/about-us
will load fine
but
www.mysite.net
returns a 404.
Everypage works including the home page if I leave out the www. The site has cms made simple in the backend and has a root_url set without the www. The dns has a cname to the www too.
As Requested here is the htaccess
RewriteEngine On
RewriteRule ^gallery(/((([a-zA-Z0-9-]+)(/(\d+))?)/?)?)?$ index.php?page=77&groupId=$4&showpage=$6 [NC,QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [NC,QSA,L]
Thanks