Redirecting URLs without www prefix to URLs with www Prefix using htaccess
Put the following lines of code in htaccess:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yourdomain.com$
RewriteRule (.*) http://www.yourdomain.com/$1 [R=301,L]
Replace yourdomain.com with your actual domain name.
| Print article | This entry was posted by iamzen on January 2, 2010 at 12:47 pm, and is filed under tutorial. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |