Hi,
I realize Wordpress handles the no-www -> www redirect and vice versa itself, but the problem I have is that it only redirects anything Wordpress related (existing or no, ie existing posts or anything resulting in a 404 error). If I try to access an existing subdirectory (which I use for other things), they don't redirect to www. and adding the usual fix in htaccess didn't result in fixing it. I added:
RewriteCond %(HTTP_HOST) ^mydomain.\tld
RewriteRule (.*) http://www.mydomain.tld/$1 [R=301]
I presume it's related to Wordpress and how it handles the redirection, so, how do I force it for everything on the server?