Admin of my new WP site is available and operational.
BUT...
Home page returns a 403 Forbidden error.
All other URLs return a 500 Internal Server Error.
I expect this is a problem with .htaccess or permissions or similar, but so far, can't figure out what I've done wrong. (I'm surprised that I can view the admin, actually.)
Here's a record of the permissions on the various files:
http://imgur.com/6NqGM.png
This is the entire .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
I've installed and operated WP several times on different hosts, but this is a new host for me, so that's the likely variable.
Any obvious glitches in what I've provided?