I am using a fresh install of WP 2.1.3. I want to redirect non-www to www and use permalinks. However, this combination seems to break the RSS feed.
I have read the Permalinks tutorial in docs and tried various order of change to get what I want. No joy on all. The current config sends all links to the homepage.
In Options - the WordPress address (URL)= endurancepro.net
Here is my .htaccess file -
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^endurancepro.net [nc]
rewriterule ^(.*)$ http://www.endurancepro.net/$1 [r=301,nc]
I would appreciate any suggestions.