I'm trying to get URL rewriting to work under IIS 7 at GoDaddy. I have wordpress installed and would like to use the "pretty" permalinks.
After searching I found a few articles at learn.iis.net (general info and specific info for wordpress) but nothing from those articles helped me.
I tried adding a web.config with the following configuration:
<?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>
An error 500 appears if I use this web.config, it doesn't recognize the rewrite tag. So I tried contacting GoDaddy support and they replied with this message:
You would be able to perform URL rewriting however we would be unable to provide technical support on how to accomplish this. I apologize for any inconvenience.
So they do support URL rewriting but they do not want to tell us how.
Anyone had this problem and managed to fix it?
Update from GoDaddy
Thank you for contacting Online Support. I apologize for the confusion. While you are able to use URL rewriting with any of our Windows hosting accounts we are unable to provide support on this. That being said if we do not provide support on a specific subject there are not going to see any help articles related to this within our help center since we cannot support it. You will need to use a search engine or community forum for assistance with setting up URL rewriting with your account. I apologize for any inconvenience this may cause.
Looks like I either find the solution here or use a Linux hosting account (which I'd rather not).