25  09 2009

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.
Share and Enjoy:
  • Print
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • Live
  • LinkedIn
  • MySpace
  • Reddit
  • Technorati
  • Twitter
  • Yahoo! Bookmarks
  • Yahoo! Buzz
  • Yigg

2 Responses to “Finally wordpress permalinks works”

  1. HURRAY MOD REWRITE.

    Internet Irritation Server is DEAD! Long live Internet Irritation Server!

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

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

Leave a Reply

« »