I had made a website bulkpedia.com In this i had use ASP.NET Routing mechanism in the way

{type}/{query}

whenever there is a query that contains a period, it shows me a 404 error

e.g. http://bulkpedia.com/web/fb.com

please help me solve it.

Thanks in advance

link|improve this question
what version of iis are you using? – Daniel A. White Aug 13 '11 at 12:21
version of iis - 7 – user502016 Aug 13 '11 at 12:23
1  
Seems to be the same problem like this question – atticae Aug 13 '11 at 12:33
feedback

2 Answers

Try sticking this in your web.config

<system.webServer>
  <modules runAllManagedModulesForAllRequests="True" >

  </modules>
<system.webServer>
link|improve this answer
i had already tried it – user502016 Aug 13 '11 at 12:48
feedback

Try this instead.

<system.webServer>     
  <modules >     
    <remove name="UrlRoutingModule-4.0" />     
    <add name="UrlRoutingModule-4.0" type="System.Web.Routing.UrlRoutingModule" preCondition="" />     
    <remove name="Session"/>     
    <add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition=""/>     
  </modules>     
</system.webServer>     

Reference: http://www.heartysoft.com/aspnet-routing-iis7-remember-modules

If this is not working either, I believe it might be your IIS or other machine setting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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