Hi, I have several different Wordpress installs in subdirectories on my single domain (i.e. http://example.com/wordpress1 and http://example.com/wordpress2). I now want my main root URL to point to one of the subdirectories (so going to http://example.com sends you to http://example.com/wordpress1). I tried following the guide found here, but ran into a problem: I am hosting with GoDaddy on a Windows server and therefore do not have a .htaccess file, instead I have a web.config file.
I looked on GoDaddy's site and they apparently do not support url redirects on their windows servers. I then followed this guide, and copied the web.config file and index.php over to my root folder and changed the line
<?php require('./wp-blog-header.php'); ?>
to
<?php require('./wordpress1/wp-blog-header.php'); ?>
in index.php.
Now when I type in my main URL I do get opening HTML of my home page on the subdirectory, but it has no theme and all of the other pages are inaccessible (including the dashboard). Also, my other Wordpress subdirectories don't work at all now.
Is there any way to do this on a windows server? I know it's possible with GoDaddy to migrate to a Linux server but one of my subdirectories is a longstanding blog and I'm terrified of losing my old posts. Thanks!