How Do I Redirect http:// to http://www?
by Shawn Walters
Just simply add this code to your .htaccess file, and change the yourdomain to your actual domain.
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=permanent,L]
Tags: htaccess, mod-rewrite,
See Other HTML & Coding Articles...
|
|