Hi to All, I want to put permanent redirection for my site. Now my site url is http://mysitename.com. So, I want to redirect the www.mysitename.com to http://mysitename.com. How can I do that? I know through .htaccess we can do that. But how? Please help me. Thanks,
Try this: Redirect to www (htaccess redirect) Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to www.domain.com The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed) Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^domain.com [nc] rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc] Please REPLACE domain.com and www.newdomain.com with your actual domain name.