Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MVC error - The controller for path '/' was not found or does not impl

Status
Not open for further replies.

fletchsod

Programmer
Dec 16, 2002
181
When I deploy the MVC website to IIS 6 and type the URL address like this " then I got an error...

--snip--
The controller for path '/' was not found or does not implement IController
--snip--

As you can see, the IIS 6 does not redirect to " So, how to make that work?

Thanks...
 
To make MVC work under IIS 6.x:
- Open the properties for your web site in IIS.
- click on the button "configuration"
- Add a wildcard application map (by clicking on the "insert" button)

add this:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll

make sure you uncheck the "verify that the file exists" checkbox.

- Make sure that default.aspx is added under the documents tab, section "enable default content page"

Cheers,
Daddy

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
Ah! It was the web-browser caching issue, it was not set to refresh on every webpage request. Had to call in an expert from outside to take a look. :-/

Fixed now. Thanks for your reply & help...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top