Creating a redirect page
This is one that comes in handy a lot. Like many things in computing there are a number of ways to accomplish this. My favorite though is one fo the simplest.
But first, it’s probably worth asking why you would want a redirect page and just clarify what I mean. Let’s say you’ve moved your main site entry page. It used to be homepage.html and now it’s index.php. You don’t want traffic to be going to homepage.html and browsing the old site, or you want to get rid of it entirely and make them come to index.php. If they just bookmarked your domain name it’s probably no big deal, the webserver will automatically serve up the correct page, but IF they bookmarked homepage.html specifically (www.yourdomain.com/homepage.html) then your visitors will see an error 404 page not found. Some might be clever and remove the page name looking to see what else is there, but don’t count on that.
So you want a page that takes someone visiting it (say we name it homepage.html) and moves them to your main page. Here’s an easy way.
Create a very simple web document…
<html>
<head>
</head>
<body>
</body>
</html>
That’s the minimum we need for a blank web page. Now, between <head> and </head> add a line like this.
<meta http-equiv=”refresh” CONTENT=”5; URL=http://pageoraddressyouwanttoredirectto”>
</meta>
Basically this is a meta tag that redirects the browser automatically. It takes two variables after Content…. the first is how many seconds before the redirect and the second is the address that you’re redirecting to. Now, if you want someone to read a message on the page, you might choose 10 or 15 seconds. If you just want to move them, I’ll choose 0 sometimes. 5 is enough to read the text that we might place to explain.
Between the <body> and </body> tags insert a line like this.
<p> You are being redirected to the correct page. If you’re browser doesn’t automatically redirect please click the link below </p>
<a href=”http://pageoraddressyouwanttoredirectto”>My new Page</a>
At this point save it and your done. Of course, you can get fancier, theme it to match your new site, add a title, etc. etc. But it can be a VERY simple start and maybe hang on to those that are following outdated links (or search engine crawlers that might reindex your site.)
Popularity: 1% [?]
Related Posts - Web translation I found this link of plugins for wordpress to aid in multilingual site building. I've been experimenting with English/Spanish designs of one site I maintain using plain html (index.html.en index.html.es and the server gives the correct page depending on the browser localization. It seems as though there was an .htaccess......
- Google search engine crawling experiment Recently I've had an experiment with the way Google crawls a site. I had a client site that had not been spidered in spite of being submitted to Google a good while back. I looked at the site and saw nothing amiss. There was plenty of text on the page......
- Late afternoon test run of Google Notebook So, I finally got down to about 5 tabs left in my firefox window and decided I could kill it off and restart it without really losing my place so I could get a good look at the Google Notebook plugin. First impression is that it's fairly unobtrusive and is......
Related Websites - Some Tips, Which Will Help You To Choose Hosting For Your Site. Before to choose a hosting for the site, you should pay attention at some moments. - Possibility of increase in disk space and other limits, both in an individual order, and within the limits of transition to other tariff plan. Time goes, the author works, the project develops. Articles are......
- What You Must Know Before You Have A Website Designed. In a time where money is extremely tight and all potential buyers are looking for the best deal, a website is no longer an option, but a requirement in order to be a successful business owner. It really doesn’t matter if your business is small or large, provide HVAC services......
- Web Style And Development Company In case your goal is to determine a presence for your web business, a practical decision would be to first create the web design malaysia. But just making a website design will never be sufficient; keep in mind you have to bear in mind that prospective customers is going to......
Similar Posts
- Web translation
- Saving you from yourself or specifying which index file to use with apache
- Custom Error Pages with .htaccess
- Preventing web crawlers from indexing everything
- Virtual Server on Apache to listen on an alternate port
November 10th, 2005 at 10:54 pm
[...] Just a note to mention that I’ve updated a page that I published a good while back. It’s kind of a funny story. I skimmed through the logs and saw that someone got here on a search for how to create redirect pages, and had forgotten about the post, I looked to see what it was. I was redirected in about 5 seconds to a google search. (Firefox uses text in the address bar to the default search provider….) Ummmm… ok something’s not right, so… [...]