This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

www to non www redirection
#3
RE: www to non www redirection
Did you set up a DNS entry for www.subdomain.domain.com? If any sub domains (or in this case sub-sub domains) do not have the proper DNS entry it will point to the panel login because it can not find the sub-sub domain. (www is considered a sub domain believe it or not, that gets directed to point to your domain folder.)

I use this for a non-www to www redirect in my .htaccess (apache 2.4):
Code:
RewriteEngine On

# Redirect non-www to www
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

So, for www to non-www should be something like this:
Code:
RewriteEngine On

# Redirect www to non-www
RewriteCond %{HTTP_HOST} ^www\.
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

In either case, check your php config to ensure mod_rewrite is enabled or it will never work Wink
-TGates - Project Council

SEARCH the Forums or read theĀ DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply
Thanks given by:


Messages In This Thread
www to non www redirection - by JSmith - 04-27-2018, 04:50 PM
RE: www to non www redirection - by JSmith - 04-30-2018, 06:21 PM
RE: www to non www redirection - by TGates - 05-01-2018, 12:48 PM
RE: www to non www redirection - by JSmith - 05-03-2018, 11:19 PM
RE: www to non www redirection - by TGates - 05-04-2018, 07:15 AM
RE: www to non www redirection - by yusha - 08-10-2018, 04:54 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
redirection domain marketingdigitalmassivo 3 7 ,837 07-20-2016, 07:38 PM
Last Post: Me.B
webmail redirection not working surfnode 18 46 ,912 03-21-2015, 10:10 PM
Last Post: kini
Redirection help please. parked domain does not work!! artdenic 10 30 ,974 03-08-2015, 08:54 PM
Last Post: Ron-e

Forum Jump:


Users browsing this thread: 1 Guest(s)