Hello, I want my blog URLs to appear with the www subdomain. Currently the URLs appear as http://mydomain/blog but I want http://www.mydomain/blog I am using Wordpress 2.8.6 which produces an htaccess file like below. # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPress I found the code below that is suppose to accomplish this but my blog breaks when I add it the existing htaccess file. Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^mydomain.com [NC] rewriterule ^(.*)$ http://www.mydomain.com/blog$1 [R=301,NC] Thanks for any assistance.
You might want to post your question here: http://forums.digitalpoint.com/forumdisplay.php?f=49 There are some very knowledgable people there that know their modrewrite stuff.
Once login to your Wordpress dashboard, go to General Options/General Settings. Then, just add the www prefix in either the WordPress address (URL) or Blog address (URL). - Dynashox -