hi
im using the wp htaccess control plugin which allows me to alter the wp ht access file
which is --
# BEGIN WordPress
<IfModule mod_rewrite.c>
...RewriteEngine On
...RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
so after RewriteRule I add my url w/o www like this
RewriteRule .http://digitalartempire.com/ /index.php [L]
I screwed this up before and had to reinstall my wp : (
i'd basically just l;iek to remove the www --
so it redirects from www to just http:digital....com/
cheers mate