Redirect page traffic to new urls in asp.net appllication

I have a WordPress site. which is now moving to asp.net cms (Sitefinity). In this process my url structures are getting changed but I want to keep the traffic of previous urls on the new urls as well.

Old as the domain will be transferred to new site old pages will not be found (404)

Things making it complicated.

Solutions I tried

Don't know what to follow or where to search. Please guide me to correct path.

Thank You Chandresh

Upvotes: 0

Views: 164

Answers (2)

Craig
Craig

Reputation: 11

Do you have an example of the old URL and what the new URL will look like? It is possible that if you know how the URL pattern will change you can create a redirect rule in your web.config.

Also, Sitefinity allows you to create redirects as well. This includes creating alternative urls for pages or creating redirecting pages.

The exact solution really depends on how much the URL is changing and how many redirect urls are needed.

Upvotes: 0

Jon R.
Jon R.

Reputation: 999

If you have an identifiable pattern between the two using the URL rewrite module would be your best bet. Or write some code to insert the old urls as multiple URLs on the content items.

Upvotes: 1

Related Questions