The solution presented in the above site allowed for a single wordpress installation. Here we had two wordpress installations in two sub directories. The solution was to process the request and identify the installation corresponding to which the request was made based on the sub-folder name. Once this was done all we had to do was change directories (for the case where it was needed) and then include the corresponding index.php. We had to chdir because otherwise the working directory would have been the directory where the 404 handler file is located and this could only work for a single installation.
The code used is given below. Copy this and modify for your needs when you have multiple wordpress installations under a domain in IIS and you want Pretty Permalinks for all of them
<?php
$_SERVER['REQUEST_URI'] = substr($_SERVER['QUERY_STRING'], strpos($_SERVER['QUERY_STRING'], ':80')+3);
$_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI'];
if(stristr($_SERVER['QUERY_STRING'], '/blog/'))
include('index.php');
elseif (stristr($_SERVER['QUERY_STRING'], '/books/'))
{
chdir('../books/');
include('../books/index.php');
}
else
header("location:http://4sometime.com/blog");
If you have questions or problems, use the form given below and we can try to help you. Ideally you should be looking for Linux Hosting Plans when you are looking at Wordpress as your blogging engine. You can also take a look at our competitively priced Linux Hosting Plans 


Comments
This worked great for me. I
Simon (not verified) wrote on April 30, 2011 - 09:21This worked great for me. I wanted to use a separate wordpress installation in a sub folder as I am not 100% confident in the wp-ecommerce solution and I did not want to break my main site while I figured it all out. Permalinks are a requirement for me and so is using IIS. Even though Apache may be better, I currently have a working IIS server to play with.
Thanks for taking the time to write this up, it worked great for me.
Simon
managed wordpress hosting
url jet (not verified) wrote on April 11, 2011 - 15:16I read this comment and I think that Permalinks are necessary for every word press.because search engine will not understand the content very much. This is good topic and try to find out this problem as possible as.
Regards
Better links
barbaramorriy (not verified) wrote on April 21, 2010 - 12:15Permalinks are necessary for every wordpress..otherwise..search engine will not be able to understand the content much
Cool! I think It;s a good
??????????? ?????? (not verified) wrote on March 18, 2009 - 14:30Cool! I think It;s a good way to know how the tools can work.
Useful information. Thanks for sharng. Good Luck.
we have put a link to it on our page :-)
You have no idea how much this has helped me!
yuda (not verified) wrote on January 27, 2009 - 05:00Hi guys
Yesterday I had to install a second WP installation on the same IIS shared hosting account. But that's not all...
It was a double WP install, on the same hosting account, using 2 different domains, on one of them the blog is not even served from the "real" hosting path, and where both supposed to use pretty permalinks.
If this is not already a WP-routing nightmare, it was all had to be done under a Windows hosting environment - and this actually posed the biggest hurdle!
Installing Apache-like mod_rewrite ISAPI's is out of the question on a shared host, so I was left with the dreaded single error page for the entire account. And I'm sure no PHP wiz...
And here is where your script helped me, in guiding me in the right path. After a some tinkering with your code, the host's domain-pointing and URL redirection, and WP own redirect, it all now plays nicely, thank god... and you!
So all the best and keep posting your coding tips - you may never know when it will save someone from the other side of the world.
Yuda
Thanks for the good words.
webmaster wrote on January 27, 2009 - 13:37Thanks for the good words. If this article really helped you, do blog about it and link to this page to spread the word.
Cheers
Anoop John
Zyxware
I came here via google.. Im
thinkdj (not verified) wrote on January 10, 2009 - 10:23I came here via google.. Im so happy to see Zyxware publishing articles :)
I have a wp installation in the root and just installed another one in a subdir.
So, both these pages exist :
My problem is that when http://example.com/new-wp-install/about is requested, it's being redirected to http://example.com/about as the default mod_rewrite rules check only the last part "about" and redirect to the main install.
Anoop chetta, do you know the regex for fixing this in htaccess ? I tried a lot of patterns . . no avail
Also, it may work if we set to parse .htaccess from each subdirectory where it exists and not just from the root ? Is that possible ?
Please post the rewrite rule
webmaster wrote on January 27, 2009 - 13:41new-wp-install\/aboutshould do the trick. Anoop John