0

I have an Home controller that has an Index Action that I'm not ready to implement it yet.

So, I decided to redirect it to the Index Action of the Feed controller. When I used online SEO analysis tools, they told me that my website is beeing found as "object moved".

The Feed/Index is OK but the root is indexed by search engines as "object moved" (probably 301?)

Can I make this redirection withou setting any Status Code?

ThatGuyInIT
  • 2,239
  • 17
  • 20
programad
  • 1,291
  • 3
  • 19
  • 38

1 Answers1

2

I think you are looking to transfer the request rather than redirect it (i.e. mvc equivalent of Server.Transfer)

There is a stackoverflow question/answere here with a good answer which shows how to do this.

Community
  • 1
  • 1
Martin Booth
  • 8,485
  • 31
  • 31