Possible lead? Went and checked the error log and I’m seeing an awful lot of this:
[Sun Feb 26 18:48:05 2006] [error] [client 69.149.119.67] mod_rewrite: maximum number of internal redirects reached. Assuming configuration error.
I know the only place on the site that I’d be using mod_rewrite is for WordPress’ permalink structure. So I snagged the .htaccess file from my WP directory, and here it is, but I can’t tell yet if something’s wrong with it…
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPress