New Post has been published on Sevenkb.com
New Post has been published on http://www.sevenkb.com/php/how-to-redirect-a-non-www-url-to-a-www-url-using-the-htaccess-file/
How to Redirect a Non www URL to a www URL using the .htaccess file
How to create a 301 redirect to redirect a non www URL to a www URLusing the .htaccess file?
Open Notepad and save name as .htaccess in web directory where all your website files are located.
Add the following code to .htaccess file
 RewriteEngine On RewriteCond %HTTP_HOST ^domain.com$ RewriteRule ^/?(.*)$ "http\:\/\/www\.domain\.com\/$1" [R=301,L]
 Replace domain.com with your website domain name.
3. save .htaccess file in your website home directory
4. If some one enters domain.com it will redirects to http://www.domain.com
5. If you wanto redirect http to https of your domain same above code replace http  with https in RewriteRule

















