How To Redirect URL To Another URL With Simple Meta Tag
If you want to redirect a page to another location with a simple html tag.
You can use this sample html tag below to redirect to another location :
Create a file name it index.html / default.htm this is all depend on which document is running first from your http configuration.
In my example default.htm is running first from my http configuration :
Create default.htm with notepad / other editor
=================================
[code]<HTML>
<HEAD>
<!-- Send users to the new location. -->
<TITLE>redirect</TITLE>
<META HTTP-EQUIV="refresh"
CONTENT="10;URL=http://testing.com/staff">
</HEAD>
<BODY>
This page has moved. You will be
automatically redirected
to its new location in 10 seconds.
If you aren't forwarded
to the new page,
<a href="https://testing.com/staff/index.php">
click here</a>.
</BODY>
</HTML>[/code]
=================================
From the example above it's mean we want to redirect a url from http://testing.com/staff to https://testing.com/staff/index.php
Recent blog posts |
Recent comments
|
Comments
Post new comment