Finally wordpress permalinks works


After a long time, finally Microsoft add the ability to work with URL Rewriting in IIS, finally Godaddy start supporting it with their hosting, and finally I try the service to found it working first shot.

You will find detail guides at

http://learn.iis.net/page.aspx/466/enabling-pretty-permalinks-in-wordpress/   (IIS official article)

http://codex.wordpress.org/Using_Permalinks (WordPress official Article)

My unofficial web.config content

<?xml version=”1.0″ encoding=”UTF-8″?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”Main Rule” stopProcessing=”true”>
<match url=”.*” />
<conditions logicalGrouping=”MatchAll”>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

Hope it helps other.
, , ,

2 responses to “Finally wordpress permalinks works”

  1. Seems, Mr. Ernie is big fan of Apache or a big hater of MS products :).

    IIS = Internet Information Services 😛 not Irritation Server. But what ever it is, new cool services are always welcome.