I've got a WordPress powered blog that I'm trying to get setup on our IIS6 server and everything works besides the permalink structure which I'm having a big headache with.

After googling around/wordpress codex I learned that it's because IIS6 doesn't have the equivalent of Apache's mod_rewrite which is required for this feature to work. So that's where I'm at now. I can't seem to find a functional solution to get the pretty permalinks to work without the "index.php/," anyone have any recommendations?

What I can't do:

  • Upgrade to IIS7
  • Switch to Apache
  • Quit my job

Those suggestions have been offered to me, which sadly, I can't do any of those. Just an, FYI.

Much thanks for anyone who can lead me in the right direction.

link|improve this question
feedback

6 Answers

up vote 1 down vote accepted

I just came across the following answer on another question: http://stackoverflow.com/questions/128796/pretty-urls-for-search-pages#128864

Hope that helps!

link|improve this answer
feedback

I researched this topic briefly and it seems you need an additional piece which is called URL Rewrite (Go Live).

Here is an article that walks you through how to create a rewrite rule using this. They also require IIS7, which I am not sure if it's really important. But it might be another thing you have to take care of.

Just in case the above URL fails later, here is an example rewrite rule for Wordpress:

<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>
link|improve this answer
That article is spot on, but URL rewrite isn't supported on IIS6 – Ptah Dunbar Sep 22 '08 at 17:25
What a beating. ;( – Till Sep 23 '08 at 17:12
feedback

I use a shared IIS7 host for my Wordpress blog, so I don't have the option of installing a URL rewrite module either. After a bit of searching round, the best workaround I could come up with was to use a custom 404 error handler, that fixes up some server variables and then hands the request on to index.php for processing. To show that this actually works, I will link to the relevant post on my blog :-)

link|improve this answer
feedback

i was struggling with this problem from few days, and after search so much stuff i got solution and now i have pretty permalinks in my self hosted (IIS7+ windows Server)blog. (Prerequisites: PHP5.0+ Version and FAST CGI SCRIPT - Don't use ISAPI Filter)

I have made one web.config you need to put that file in your root directory and done. http://www.geekblogger.org/2010/03/how-to-set-pretty-permalinks-in.html

link|improve this answer
feedback

IIRF does this, for IIS6.

Free.

link|improve this answer
feedback

I think you would find the answer here - How To Set Pretty Permalinks in Wordpress Runs On IIS 7 I guess you need to put one web.config file in the root folder like :

<?xml version="1.0"?>
<configuration>
 <system.webServer>
 <defaultDocument>
  <files>
    <remove value="index.php" />
    <add value="index.php" />
  </files>
 </defaultDocument>
<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/{R:0}" />
     </rule>
 </rules>
</rewrite>
</system.webServer>
</configuration>g
link|improve this answer
Please don't paste the same answer all over the place. Also, per the FAQ "Be careful, because the community frowns on overt self-promotion and tends to vote it down and flag it as spam. Post good, relevant answers, and if they happen to be about your product or website, so be it. However, you must disclose your affiliation in your answers. Also, if a huge percentage of your posts include a mention of your product or website, you're probably here for the wrong reasons." – Will Apr 14 '11 at 18:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.