Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm going through some of the crawl errors on an MVC application I maintain, and found a 404 error for a URL that looked like it should be valid.

The URL is of the format: /gifts/{categoryName}/{productName}/{productId}/

For some reason, when the productName is set to the value "con" I just get a 404 error. Any other value (different or same length of string) and it seems to work fine.

Has anyone ever seen anything like this before?

share|improve this question

1 Answer

up vote 14 down vote accepted

con is a reserved word and therefore cannot be put in an MVC route

You need to add the following to your web.config:

<configuration>
  <system.web>
    <httpRuntime relaxedUrlToFileSystemMapping="true"/>

    <!-- ... your other settings ... -->
  </system.web>
</configuration>

See this article for more information:

Putting the Con (COM1, LPT1, NUL, etc.) Back in your URLs

share|improve this answer
That's a great shout! Just made the change to my web.config and it's working fine now... I shall have a read up on that. Many thanks. – dotnetdave82 Apr 24 '12 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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