Pretty URL's add in user account name, but are pretty

Permalink
(posting in a more appropriate forum)

Hmmmm...I have a brand new site I have set up on a VPS where I set up one user, and that user lives in the /~www directory....

When people go to the URL:http://www.honeypoint3d.com

....they are able to click on the links anywhere on the front page, and everything shows up OK in the address bar....but once they click on any link, all links in the site now turn tohttp://www.honeypoint3d.com/~www/whateverpage......

The problem doesn't show up on first click, but on all subsequent clicks. The "enable pretty URL's" is checked and says there were no problems....anyone know why this would happen?

Thanks!

.htaccess below:


<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /~www/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>

pendragn