I installed WordPress 2.9.2 on a homemade Ubuntu Server 10.4 with Apache 2.2 and MySQL 5.1 using the 5-minute install instructions. The initial install to the root directory was flawless. I have no problems logging in or navigating the dashboard.
The problem comes when I try to view the site. With default permalinks (ugly) selected, both "Visit Site" or "View Post" go directly to the Apache "It Works" homepage. With "Pretty" permalinks selected, "Visit Site" goes to the Apache "It Works" homepage and "View Post" ends in a broken link error.
.htaccess is installed and reads:
`# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
On the Apache end, mod_rewrite is enabled.
What am I missing?