Hello,
I'm working on a site who hosts their WordPress site on a Windows server.
When you try and view the site you get a 404 not found... BUT I can access the wp-admin login page and all of the sub pages.
http://www.masterworkshealing.com/members/
Nnnothin.
Does anyone have experience troubleshooting WP on a Windows server? Normally it seems like I'd adjust the .htaccess file but this is a whole different type of configuration.
I see a web.config file in there that has this info:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="Index.php" />
<add value="Index.html" />
<add value="Index.htm" />
<add value="Index.cfm" />
<add value="Index.shtml" />
<add value="Index.shtm" />
<add value="Index.stm" />
<add value="Index.php3" />
<add value="Index.asp" />
<add value="Index.aspx" />
<add value="Default.htm" />
<add value="Default.asp" />
<add value="Default.aspx" />
</files>
</defaultDocument>
</system.webServer>
<location path="members">
</location>
</configuration>
Any ideas??