Wordpress site not redirecting properly

189 Views Asked by At

We have developed a wordpress site recently, if i just type http://example.com in browser i will get the site, but if i type www.example.com it is not displaying anything, what happened to it, is there any problem to my htaccess? My site url and homeurl is http://example.com, i have tried with different options in my htaccess badluck, i just wnat to redirect the www.example.com to http://example.com.

1

There are 1 best solutions below

0
On

for redirecting www to no-www put this code in your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

and make sure your site URL in wordpress setting have no www .