I want to make a page which redirect me to another page. How can I make this page? I want to make url shortening site.
I want to make a page which redirect me to another page. How can I make this page? I want to make url shortening site.
I think that the proper redirecting would be 302 redirect for a shortening website, but I think you should not spend time and money on developing the site. If I were you I would buy an off the shelf script or try to find a free one.
php.net has most of the answers, for your question refer here.
Seen a good post - give some reputationKeeping the forum clean - SPAMMERS BEWARE!!
to redirect, if you are using php programming to redirect to another page. you can just just php header function..
why not just use html code?............................................. .............................
useing <?header(”Location: xxx”)?>
to redirect, if you are utilizing php scheduling to redirect to another page. you can just just php header purpose..
Use this example without PHP
<script language='javascript'>self.blur();</script>
<meta http-equiv='Refresh' content='0;URL="link"'>
or
<script language="JavaScript1.1">
<!--
window.location.replace("link");
//-->
</script>
You can use header("Location:abc.php") to redirect the pages to the other page
Not to disagree with people posting javascript functions, but javascript can still be disabled by users. If you are already using a php page, it is better to use the header function as others have said above.
Bookmarks