Just tried to reproduce your problem with a completely new project; it turns out that the problem is that the instructions in this example were not saved with the changes in FubuMVC.
In the instructions, you are prompted to create a class called "MyHomeController" and add the Index () method to it. This worked because one of the default rules for routes was to use any class with a name that ends with "Controller".
But the default value has been changed in later versions, and now the rule is looking for classes ending in "EndPoint".
So, if you change the class name from "MyHomeController" to "MyHomeEndpoint", it should work.
Also, remember that the application pool must be restarted for the new configuration to take effect, so you will have to touch your web.config (or force restart IISExpress).
source share