I own multiple domains and wanna promote them pointing to one ASP.NET WebForms application.
But duplicate content is either ignored, or even worse, penalized, by the search engine algorithm.
Google recommends using 301 redirects to standardize URLs.
How to implement this using ASP.NET?
2
Answers
If you are using .NET framework 4.0 or above you can do:
For earlier version you can use:
Since the content is identical, i would suggest using rel=canonical. 301 is to indicate that the resource has moved permanently which is not the case here. you should be using rel=”canonical”.