Apollo
Apollo

Reputation: 2070

Redirect old ASP page to new ASP.net page

I had a page named www.mysite.com/page.asp. That page does not exist anymore and I want it to go to www.mysite.com/type/newpage.aspx when a user clicks on the old link. Any ideas ?

Upvotes: 1

Views: 437

Answers (1)

aditya
aditya

Reputation: 342

if you have hosted your application on IIS, you can perform an URL rewrite to redirect to the new page. http://www.iis.net/learn/extensions/url-rewrite-module/creating-rewrite-rules-for-the-url-rewrite-module

Upvotes: 2

Related Questions