Home » Tutorials » PHP
| Note 1: You don't have to know PHP programming
to do this tutorial. |
| Note 2: I assume that your server supports
files with .php extension. If not, you won't be able to do
this tutorial. For more info on how to install PHP on your
PC go to http://www.php.net |
Open notepad or any other HTML Editor and paste the following
code.
<?
$URL="http://www.adesdesign.net";
header ("Location: $URL");
?>
<html>
<title>Ades Design</title>
<head></head>
<body>
</body>
</html> |
Save as ades.php and upload to your web server. Now access
it through your browser at http://www.yourdomain.com/ades.php
You should be automatically redirected to my website. |
|
|
Now customize your script. Put your own link instead of
http://www.adesdesign.net and
change the title Ades Design.
You can also put some text or link inside the body. In
case your redirection does not work people will be able
to click and go to the desired page. |
 |
|