Extremely new to installing wordpress. However I thought I had most everything worked out.
I have WordPress 3.0.4 installed on a Windows Home Server Machine running IIS 6.
I believe I have url rewriting configured correctly via Ionics ISAPI Rewrite Filter (http://iirf.codeplex.com/). I believe it's working because navigating to the first sample post results in a working path of "http://schiavone.homeserver.com/blog/2011/01/20/hello-world/", that's "pretty" right? ;)
So here's the issue, I've tried to add a second site. One called "recipes", however navigating to /blog/recipes or /blog/anythingelse brings me to the main site.
My IIRF.ini file (which if I'm understanding correctly is the equivalent to .htaccess in apache) reads:
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
Any thoughts?