Click here to Skip to main content
15,887,676 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear friends,
i´m trying to integrate url rewrite in my web.config, but it never works.
i´ve a hosting deluxe windows with godaddy. i´ve tried all the code i´ve seen in the web but nothing. it doesn´t do anything or give me error 500.
Now, my web.config, is very simple but nothing. I show it you.
Can anybody help me please?


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configSections>
<section
name="rewriter"
requirePermission="false"
type="Intelligencia.UrlRewriter.Configuration.
RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" />
</configSections>
<system.web>
<httpModules runAllManagedModulesForAllRequests="true">
<add
type="Intelligencia.UrlRewriter.RewriterHttpModule,
Intelligencia.UrlRewriter"
name="UrlRewriter" />
</httpModules>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<add name="UrlRewriter" type="Intelligencia.UrlRewriter.RewriterHttpModule" />
</modules>
<validation validateIntegratedModeConfiguration="false" />
</system.webServer>
<rewriter>
<rewrite url="~/contacto/" to="~/contacto.asp" />
</rewriter>
</configuration>
Posted
Comments
F-ES Sitecore 9-Sep-15 4:30am    
Have you asked GoDaddy if this is supported?
DavidSanFer 9-Sep-15 4:35am    
yes, they say me that url rewrite is supported in windows hosting but they can´t give support with code. other think: i´ve other hosting in 1&1 with exactly the same code in web.config and it works perfectly..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900