I was given the code below for my .htaccess file, and it succeeded in directing my http:// to http://www. However, any article pages or posts simply redirected to the home page instead of mydomain.com/blog-post-here Any ideas what is wrong? RewriteEngine On RewriteCond %{HTTP_HOST} ^yourdomain\.com$ [NC] RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]
There is nothing wrong with these lines. They do not redirect all pages to the home. Did you double check the rest of your .htaccess file ? Jean-Luc