views:

56

answers:

2

I just moved my site to my server which is windows 2003 sp2, sql 2005.

I have a mvc site running on my server (althought i have it turned off) it works fine but my new site does not work correctly

For some reason the routing fails to work on my server. I can hit the homepage fine using the domain but clicking on any link(or typing it in) results in simply a page not found issue!

"The page cannot be found The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."

+1  A: 

MVC doesn't play so well with IIS6 out of the box. Have you configured a handler for either .mvc or a wildcard handler?

Wyatt Barnett
thanks this was the problem in the end. had to sort out the handler and also set up the wildcard dll and decheck the "check file exists"
Steve
A: 

You need to make your MVC assemblies bin deployable: http://www.britishdeveloper.co.uk/2010/05/mvc2-deploy-could-not-load-file-or.html

BritishDeveloper

related questions