Please visit this 2 website..... www.socialh.com stackoverflow.com Have you see any difference on URL among them. The first website started with www. and the second website is without www. when you are browsing on browser. So how I can hide this www. part from browser? I mean when anyone will visit my website then he will see my website without www. part on browser. Thanks
You can do this by adding a snippet in your .htaccess file. Add this code : RewriteEngine On RewriteCond %{HTTP_HOST} ^www.yoursite.com RewriteRule (.*) http://yoursite.com/$1 [R=301,L] Code (markup): Always backup your .htaccess file before editing.