How to Create redirectURL

How to created redirect, using simple script ready...

Redirect with files index.php

created file with name index.php and uploads to hosting
paste this code:

   <?php
    header("location: http://targetURL.com/");
    ?>

Redirect with files index.htm or htmlcreated file with name index.htm or .html and uploads to hosting
paste this code:

<html>
<head>
<title>Youre Site Title</title>
</head>
<frameset rows="0, frameborder="NO" border="0" framespacing="0">
<frame src= name="topFrame scrolling="NO" noresize>
<frame src="http://targetURL.com/"> **\\ if use file avalible Ex: http://myciut.tk/index.php
</frameset>
<noframes><body>
</body></noframes>
</html>



Redirect with files .htaccess
create or edit file .httaccess in you hosting, and add this scripts:


    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule (.*) http://targetURL.com/$1 [R=301,L]

if you setiing youre redirect via cPanel Redict you can see scripts above ins youre file .htaccess next...

Redirect with Meta Refresh


you can simple add script bellow on youre files or article:

<META HTTP-EQUIV="REFRESH" CONTENT = "3; URL=http://targetURCL.com/">

heii, 3 above is after 3 seconds for refreshing youre browser..

 
 
 
Copyright © My Ciut