I need to create a View called BancoDeImagens
but I need to have it's URL instead of:
- www.site.com/home/ImageBank
I would like to remove /home/
and separate names by -
to look like this:
- www.site.com/banco-de-imagens
I can not create a view like this:
public ActionResult banco-de-imagens(){
}
My question: Is it possible to map a View so that its URL is the same as the example above?