Results 1 to 8 of 8
-
10-22-2011, 06:33 AM #1
Freshman
- Join Date
- Oct 2011
- Posts
- 17
- Thanks
- 1
- Thanked 2 Times in 1 Post
- Feedback Score
- 0
html to new page redirection code.
Very helpful to redirect a page to other page. try once.............
<html>
<head><meta http-equiv="REFRESH" content="0;url=your domain name here"></head>
<body>
</body>
</html>
-
11-09-2011, 12:17 PM #2
Freshman
- Join Date
- Nov 2011
- Posts
- 17
- Thanks
- 0
- Thanked 2 Times in 2 Posts
- Feedback Score
- 0
Not the best way to do this.
You can also do it in .htaccess by doing the following:
This will also tell search engines that the page has move so will pass on the "Google juice".Code:Redirect 301 /page.html http : // newurl.com/newpage.html
-
11-17-2011, 05:52 AM #3
Freshman
- Join Date
- Nov 2011
- Posts
- 17
- Thanks
- 0
- Thanked 2 Times in 2 Posts
- Feedback Score
- 0
Can't edit the post so I'll post the correction here....
It should look like this (no spaces in the url)
Code:Redirect 301 /page.html http://newurl.com/newpage.html
waste removal croydon and removal companies surrey head coder and total tech nerd!
Programming for about 15 years.
-
The Following User Says Thank You to BalaJohnes For This Useful Post:
PeterG (12-14-2011)
-
12-22-2011, 01:44 PM #4
Freshman
- Join Date
- Dec 2011
- Posts
- 37
- Thanks
- 0
- Thanked 6 Times in 6 Posts
- Feedback Score
- 0
-
12-28-2011, 03:46 AM #5
Freshman
- Join Date
- Aug 2010
- Posts
- 30
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
-
02-17-2012, 09:33 AM #6
-
02-18-2012, 05:04 AM #7
Freshman
- Join Date
- Feb 2012
- Posts
- 3
- Thanks
- 0
- Thanked 1 Time in 1 Post
- Feedback Score
- 0
Redirecting with PHP
If you don't have access to .htaccess then you can do this with PHP
PHP Code:<?php
header('Location: URL HERE', true, 301);
exit;
-
The Following User Says Thank You to SiteCrawl For This Useful Post:
AllanMarshel00 (03-19-2012)
-
03-19-2012, 10:40 AM #8
Freshman
- Join Date
- Mar 2012
- Posts
- 13
- Thanks
- 1
- Thanked 0 Times in 0 Posts
- Feedback Score
- 0
Similar Threads
-
Simple HTML Page code..
By naudy in forum HTML / DHTMLReplies: 19Last Post: 08-25-2011, 03:08 AM -
The best html code for embeded video
By raja1 in forum HTML / DHTMLReplies: 9Last Post: 06-06-2011, 02:03 PM -
How To convert in html to bob code?
By synthetic1 in forum Web Development - Programming & CodingReplies: 0Last Post: 09-21-2010, 05:46 AM -
Link value after permanent Redirection of page
By Arecher in forum Search Engine OptimizationReplies: 0Last Post: 07-10-2010, 02:45 AM -
Beautiful HTML Code
By Amit.Verma in forum Graphics Design & Web DesignReplies: 5Last Post: 10-06-2008, 07:49 AM


Reply With Quote

