*.abc.com redirect to www.abc.com

seachen

Verified User
Joined
Feb 3, 2007
Messages
491
1 of my client request to make his website like this case.

when visitor type abc.com, it will auto redirect to www.abc.com

may i know how to do this?
 
Use an .htaccess file in the public_html of that website and place something like this

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