Link to home
Start Free TrialLog in
Avatar of blaster998
blaster998

asked on

redirecting a webpage

I have a webpage (i.e. webpage.asp) that I want to redirect to "newpage.htm".  In other words, whenever someone finds webpage.asp on the internet, they will automatically be directed to newpage.htm without even realizing it.  Both pages are in the same directory on my website.

Is this possible?
ASKER CERTIFIED SOLUTION
Avatar of sadburger
sadburger

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bmatumbura
bmatumbura

Modify the head section of the webpage.asp page to include a META tag as shown below.
<html>
 <head>
   <title>IU Webmaster redirect</title>
   <META http-equiv="refresh" content="0;URL=./newpage.htm">
 </head>

Open in new window