vote up 4 vote down star
2

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).

flag

75% accept rate

6 Answers

vote up 4 vote down check

I have a friend at GoDaddy who said that they are planning to support the Microsoft Url Rewriter soon, but it's not currently installed. For now, I'm using the ManagedFusion Url Rewriter on my blog which is hosted at GoDaddy.

If you want details on how I have it setup, check out my blog post, or another stackoverflow question I answered.

link|flag
I found your post after a while, I tried it but it kept giving me the error 500. I went with a Linux hosting account which I'll upgrade to Windows once they support the Microsoft Url Rewriter. Thanks – Crossbrowser Jan 7 at 14:26
vote up 1 vote down

Just an update to this question. As of today, I am able to get the URL Rewrite Module in IIS7 to work at godaddy. I have an "Economy Hosting - Windows" account with Godaddy.

I uploaded a very simple web.config to my site's root directory (called "html" in my case), and redirect is working correctly for me. Here's my simple test web.config:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
    	<rewrite>
    		<rewriteMaps>
    			<rewriteMap name="StaticRedirects">
    				<add key="/oldfilename.jpg" value="/newfilename.jpg" />
    			</rewriteMap>
    		</rewriteMaps>
    		<rules>
    			<rule name="RedirectRule" stopProcessing="true">
    				<match url=".*" />
    				<conditions>
    					<add input="{StaticRedirects:{REQUEST_URI}}" pattern="(.+)" />
    				</conditions>
    				<action type="Redirect" url="http://www.mydomain.com{C:1}" appendQueryString="False" redirectType="Permanent" />
    			</rule>
    		</rules>
    	</rewrite>
    </system.webServer>
</configuration>

When I try to visit http://www.mydomain.com/oldfilename.jpg, my browser is successfully redirected to http://www.mydomain.com/newfilename.jpg .

link|flag
Anyone can confirm this? – Crossbrowser Oct 6 at 18:30
vote up 0 vote down

is there anyway to ask godaddy to Install URL rewritter module given by Microsoft ? if they are not giving support on this issue, then how one can move to godaddy ?

link|flag
vote up 0 vote down

Latest update from GoDaddy support...

Windows hosting accounts that are running IIS7 do support the URL Rewrite Module by default. Unfortunately we would be unable to provide further assistance on this issue as we do not provide scripting support. For further information you can view Microsoft’s® URL Rewrite Module documentation.

Please let us know if we can assist you in any other way.

And now I'm completely confused. The web.config file won't accept the <rewrite> tag, and according to GoDaddy it should be enabled and functioning properly.

link|flag
vote up 0 vote down

I'm having exactly the same problem. As soon as I include the <rewrite> tag in the <system.webService> element I'm getting type 500 errors.

I'm trying to use this with MediaWiki. The domain hockeywiki.org is installed pointing at a subdirectory from my hosting account. The web.config file is in the root of that subdirectory, and MediaWiki is installed in the /w folder.

Strangely, GoDaddy tech support pointed me to URL Rewriter for IIS documentation. Is there some other tag that needs to be added to enable Rewriter processing? Or does the <rewrite> element signal it to run?

link|flag
vote up 0 vote down

Are you sure that GoDaddy has the IIS URL Rewrite module installed?

link|flag
It doesn't seem to have that particular module (since I'm getting the error 500 page), but it says that it supports URL rewriting, maybe through ASP.Net or with another module. – Crossbrowser Jan 6 at 15:15
yeah, you could do your own URL rewriting without that particular module, so perhaps that's what it means. But the rule you're trying to use is dependent on the module. – alex Jan 6 at 19:04

Your Answer

Get an OpenID
or

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