Wordpress 3.0.1 running on MS IIS6 Windows Server is now installed which I developed from my Mac OS X platform. Have done
Pls note that my WordPress setup is under the following directory structure:
c: \ inetpub \ wwwroot \ MYSITE
Here's the problem though, Together, it seems that unable to find any page like "About me", even though I have correctly installed them in the scrape side of things.
"HTTP Error 404 - File or Directory Not Found. Internet Information Service (IIS)"
Is this permalinks / .htaccess file not working on MS II6?
How to fix exactly is unsure.
Thank you.
.htaccess files are for HTTP Apache HTTPD, they do not work with IIS. For IIS, you need to create a "web .configure" file and add the following lines.
& lt; Rewrite & gt; & Lt; Rules & gt; & Lt; Rule name = "main rule" stop processing = "true" & gt; & Lt; Mail url = ". *" * / / Gt; & Lt; Conditions logical group = "match" & gt; & Lt; Input = "{REQUEST_FILENAME}" matchType = "IsFile" reject = "true" /> & Lt; Input = "{REQUEST_FILENAME}" matchType = "isDirectory" reject = "true" /> & Lt; / Status & gt; & Lt; Action type = "rewrite" url = "index.php" /> & Lt; / Rules & gt; & Lt; / Rules & gt; & Lt; / Rewrite & gt; IIS6 does not work: As Kiv tells, this code does not work in IIS6. With little googleing I think IRS restructuring is not possible with IIS6. If there are any other methods, please update here.
Possible alternative to IIS6?
Is it possible to use or in this situation? Can anyone clarify on this?
Comments
Post a Comment