How to redirect yourdomain.co.cc to www.yourdomain.co.cc?

Status
Not open for further replies.

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
Actually, it uses more bandwidth/time to use the redirect.

If you insist, you can use .htaccess to use mod_rewrite to issue a 301 Permanently Moved :


Code:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^yourdomain\.co\.cc$ [NC]
RewriteRule ^(.*)$ http://www.yourdomain.co.cc/$1 [R=301,L]
 
Status
Not open for further replies.
Top