• Hello, if i put the www in front of my site it works, however if i dont, it goes to my main site on multisite. Does anyone know how to fix this? Thank you .

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • You should redirect the call without www to the URL with www. This would be possible e.g. with an addition in the .htaccess file.

    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTP_HOST} ^jessierose\.ca [NC]
    RewriteRule ^(.*)$ http://www.jessierose.ca/$1 [R=301,L]
    </IfModule>

    Untested 😉 You would have to add it to your .htaccess right at the beginning.

    If this does not work, you may not have an Apache web server but a nginx server. In this case you should contact the support of your hoster.

Viewing 1 replies (of 1 total)
  • The topic ‘site redirects to multiste main’ is closed to new replies.