There is a more simple way to do this for those who have cPanel, but for those who dont the better way do redirect a page to another is this.
To redirect page_X to page_Y we have to put this code in page_X:
Its very simple... The page_X will auto refresh for the URL that we want, in this case page_Y.
And thats just it. It may be useful. If you have any questions please post theme in this topic
To redirect page_X to page_Y we have to put this code in page_X:
| Code: |
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> <head> <title>page_X</title> <META HTTP-EQUIV="Refresh" content="5; URL=page_Y.html"> </head> <body> <div align="center"> Redirecting in 5 seconds</div> </body> </html> |
Its very simple... The page_X will auto refresh for the URL that we want, in this case page_Y.
And thats just it. It may be useful. If you have any questions please post theme in this topic
