Skip to content
WJunction - Webmaster Forum

redirect . HOw ?

Status
Not open for further replies.

6 comments

Redirect without noticing
Code:
<html>
<script>
location = "http://www.example.com";
</script>
</html>

or

Redirect by Alerting (this wud need Java)
Code:
<html>
<script>
alert( "This page has been moved to a new location... click OK to be redirected?");
location = "http://www.example.com";
</script>
</html>


or


use 301 htaccess redirect
Code:
Redirect 301 /forum/index.php?321654 http://www.example.com
 
go to your .htaccess file and put

Code:
# Redirect old file path to new file path
Redirect /olddirectory/oldfile.html http://mt-example.com/
 
Status
Not open for further replies.

About the author

W
Active Member · Joined
Born lazy No idea
212
Messages
0
Reactions
16
Points

Advertise on WJunction

Reach 1000's of webmasters, hosts & affiliates. Banner & sponsored-thread slots available.

Contact us
Back
Top Bottom