Hello i am new to website admin panel. I have a site who follows www and non-www both. I want to apply redirection either canonical or 301 any . Can anyone tell how to start it and apply it properly to the site. Where to apply code in c-panel setting of site.
To redirect your website from non-www to www Create a .htaccess file and put it in your root directory In .htaccess file you have to write following code Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^domain.com [nc] rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]