The site does not work with the URL www

Hi, I have a problem with my site, when I type http://example.com, it works fine, but when I type http://www.example.com, it doesn’t display the page,

What is the problem that I could not find, I also tried redirecting .htaccess.

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com [nc]
RewriteRule (.*) example.com/$1 [R=301,L]

he does not work

any help would be appreciated

+3
source share
3 answers

If you are redirected to another site, you need to specify "http: //" in front, otherwise Apache will interpret it as a file on the server.

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com [nc]
RewriteRule (.*) http://example.com/$1 [R=301,L]
+3
source

Make sure you have www alias set in apache vhost file

<VirtualHost *>
..
ServerName www.example.com
ServerAlias example.com
...
</VirtualHost>

Also remember to restart Apache after each change.

+2

DNS ? IP-? - , - .

+1
source

Source: https://habr.com/ru/post/1736872/


All Articles