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
source
share