Ads

HTML Redirector Page Code

This code can be used as a HTML Redirector when a page or website has moved.

<html>

<head>

<meta http-equiv=”Content-Language” content=”en-gb”>

<title>http://www.YOUR-NEW-SITE.co.uk</title>

</head>

<body>

<p>This page has moved to: <a href=”http://www.YOUR-NEW-SITE.co.uk” >http://www.YOUR-NEW-SITE.co.uk</a></p>

<p> </p>

<p>Please update your records, you will now be redirected…</p>

<meta HTTP-EQUIV=”REFRESH” CONTENT=”5;URL=http://www.YOUR-NEW-SITE.co.uk”>

</body>

</html>

Squid Proxy Tip

Do you run a squid proxy? I do, and have been restarting squid to apply config changes for ages. Turns out that you can just run “service squid reload”, users have no down time and your config changes get applied. Great. Wish I had thought to check that before now…..

(This works on RHEL/CentOS, [...]