473,796 Members | 2,559 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to move most "search-engine-friendly" a web page (address) ?

A web page which exists for a couple of years under a certain address

(e.g. http://www.aaa.com/bbb/ccc.html)

is (should be) moved to another location

(e.g. http://www.newloc.com/ddd/eee.html)

Ok. I could replace the ccc.html by another page which forwards the user to
the new page. However what I want to achieve ist that the search engines should
adopt the new address step by step so that the old address becomes needless in a couple
of month.

What should I enter for example in the Meta Tags to instruct the search engine to
change the target address ?

Matt

Jul 20 '05 #1
10 2283
From: Ma********@emai l.com
(Matt*Adams)
A web page which exists for a couple of
years under a certain address
(e.g. http://www.aaa.com/bbb/ccc.html)
is (should be) moved to another location


Use Server Redirect via .htaccess:

http://www.outfront.net/tutorials_02...ess_magic2.htm

Web Design-Magic-Painting-Junking-Games
INFO 2000 For You
http://www.davmagic.com
See how your webpages look on a MSN-TV Browser:
Download it here: http://developer.msntv.com/Tools/msntvvwr.asp

Jul 20 '05 #2
Matt Adams wrote:
A web page which exists for a couple of years under a certain address

(e.g. http://www.aaa.com/bbb/ccc.html)

is (should be) moved to another location

(e.g. http://www.newloc.com/ddd/eee.html)

Ok. I could replace the ccc.html by another page which forwards the user to
the new page. However what I want to achieve ist that the search engines should
adopt the new address step by step so that the old address becomes needless in a couple
of month.


If you cannot use server redirection: delete *all* content from the
page, do not attempt to redirect, just place a text like this:

Page has moved to <a href="http://www.newloc.com/ddd/eee.html">here</a>

After a few months search engines should have dropped the old page for
relevant searches and you can delete the page at the old address.

--
Spartanicus
Jul 20 '05 #3
Spartanicus <me@privacy.net > wrote:
If you cannot use server redirection:
.... then take another look. Usually people just _think_ they cannot use
server redirection, which is the appropriate way, as our dusty FAQ
tells.
delete *all* content from the
page, do not attempt to redirect, just place a text like this:

Page has moved to <a
href="http://www.newloc.com/ddd/eee.html">here</a>
Well, a normal link to the new address is OK, _if_ you really cannot
redirect. But why delete the content? What purpose would it serve?
You could just put the link at the start of the page, prominently.
After a few months search engines should have dropped the old page
for relevant searches and you can delete the page at the old
address.


And what happens to all the links that use it? And there can be search
engines that you don't know of and that work slowly.

_If_ you cannot user server redirection (you probably can), keep the
old page (at least with a link to the new address) as long as possible
if not longer. You might need to give up keeping it if it costs you
real extra money, but there's no reason to remove it just for cleanup.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 20 '05 #4

"Jukka K. Korpela" <jk******@cs.tu t.fi> wrote in message
news:Xn******** *************** ******@193.229. 0.31...
But why delete the content? What purpose would it serve?
You could just put the link at the start of the page, prominently.

In the future, this page won't be thought by spiders to be an
active page on the topic. The time it saves not cataloging this
inactive page might be used to catalog the new location.
After a few months search engines should have dropped the old page for relevant searches and you can delete the page at the old
address.


And what happens to all the links that use it? And there can be

search engines that you don't know of and that work slowly.
Then wait a few more months. :)
_If_ you cannot user server redirection (you probably can), keep the old page (at least with a link to the new address) as long as possible if not longer. You might need to give up keeping it if it costs you real extra money, but there's no reason to remove it just for

cleanup.

I'd leave it up as long as space on the server allowed - which is
another excellent reason to delete the content, in order to save
space.
Jul 20 '05 #5
Jukka K. Korpela wrote:
Well, a normal link to the new address is OK, _if_ you really cannot
redirect. But why delete the content? What purpose would it serve?
You know the answer.
And what happens to all the links that use it?
I prefer to assume that people are intelligent enough to realize that
they'd need to change links to a page they are moving.
And there can be search
engines that you don't know of and that work slowly. _If_ you cannot user server redirection (you probably can)


I like to think that I know more about my account options than you do.

I'm comfortable with pedanticism, patronising doesn't suit you.

--
Spartanicus
Jul 20 '05 #6
"Neal" <ne**@spamrcn.c om> wrote:
But why delete the content? What purpose would it serve?
You could just put the link at the start of the page, prominently.


In the future, this page won't be thought by spiders to be an
active page on the topic. The time it saves not cataloging this
inactive page might be used to catalog the new location.


Well, that would be achieved by using server redirection - one reason
to use it.

Regarding the inferior solution, deleting the content would cause
trouble to users who find the page. They would need to follow the link,
which might not even work, due to connection problems. If they were
told that the page is now at a new address, with a link to it, and that
the content below is an old copy, they could make an informed decision.

Search engines should learn to give priority to the new page simply
because it is updated more often and links are updated to point to it.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 20 '05 #7
Spartanicus <me@privacy.net > wrote:
And what happens to all the links that use it?


I prefer to assume that people are intelligent enough to realize that
they'd need to change links to a page they are moving.


Maybe intelligent enough, but people who follow a link and enter a page
that says that the page has moved to ... are usually not _able_ to
change the link, because the link is on someone else's page. Besides,
a link may well lie dormant on a page (i.e. nobody follows it) during
the "few months" what you allowed for ("After a few months search
engines should have dropped the old page for relevant searches", which
is somewhat unrealistic - the search engine indexers can be pretty
slow, especially the big ones).

I don't think there are sufficient reasons to _promote_ link rot by
deliberately deleting old pages.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 20 '05 #8
Jukka K. Korpela wrote:
And what happens to all the links that use it?
I prefer to assume that people are intelligent enough to realize that
they'd need to change links to a page they are moving.


Maybe intelligent enough, but people who follow a link and enter a page
that says that the page has moved to ... are usually not _able_ to
change the link, because the link is on someone else's page.


There could indeed be other links to the page about to be moved beyond
the author's control, from other web sites, usenet posts etc. Only the
OP knows if this applies, and if so if he considers this important.
Besides,
a link may well lie dormant on a page (i.e. nobody follows it) during
the "few months" what you allowed for ("After a few months search
engines should have dropped the old page for relevant searches", which
is somewhat unrealistic - the search engine indexers can be pretty
slow, especially the big ones).


Deleting the "page has moved" page is optional. I've done this twice
myself, both times I left the "page has moved" pages up for 2 years.

--
Spartanicus
Jul 20 '05 #9
MH
> I'd leave it up as long as space on the server allowed - which is
another excellent reason to delete the content, in order to save
space.


Why not keep track of the number of hits on the page and delete it only if
that number has dropped below a certain level.

-----
MH
Jul 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
1897
by: Troels F. Smit | last post by:
Where can I find information on implementing a search function on my site ? -- Mvh. Troels F. Smit
1
1349
by: Leu | last post by:
I like to search in the forum but I can't find the (in FAQ described) "search" link: "... To access the search feature, click on the "search" link at the top of most pages. ..." Where is the "search" link? Leu --
2
5605
by: Adam Short | last post by:
I've never needed it before but now I do! Does anyone know if you are able to perform a NOT Like search using Classic ASP ADO? i.e. myData.Filter = "Ref NOT LIKE '*1234*'" by the way this doesn't work!! and neither does myData.Filter = "Ref <> LIKE '*1234*'"
0
1485
by: Robert Oschler | last post by:
I have a database table with a field that is indexed as a "full-text" search, since I want the capabiity. However, I also want the ability to quickly retrieve records from that table that are ins "sorted-order" by this very same field. Do I still need to create a "regular" non-full-text search index to have this capability? Or will the "full-text" index be sufficient? Thanks.
0
1362
by: Tallgeese | last post by:
We developed an in-process COM object for our own application. A toolbar button is used to activate the COM object. But when the COM object loaded, the HTML help hang when clicking the "List Topics" in "Search" tab. The HTML help work nornally without loading the COM. Can anyone provide some starting points, so that I can look at the problem ? Thanks in advacne.
7
1499
by: Matt Kruse | last post by:
Javascript "Knowledge Base" Search: http://www.javascripttoolbox.com/search/ Responses to questions on this group are often along the lines of "did you read the FAQ" or "did you search the archives?" or "did you do a google search?". To regular readers and experienced javascript developers, knowing how and where to search and filtering out junk results is an easy task. For most javascript users, however, it's not so easy.
4
1373
by: rempit | last post by:
In 1 form..have 2 "DIV".. "DIV" one is for SEARCH.. "DIV" two is for showing the RESULT from Database of "DIV" one Button.. Everything in one page.. Anyone can help me please..
13
5018
by: Robertf987 | last post by:
Hi, Yet another thing I need help with I'm affraid. I'll first explain what I want, then I'll try to explain what I have. I'm using Microsoft Access 2000. What I want is to be able to do a search, taking it's criteria fro a text box on a form. This bit is easy, done it a jazillion times. But I want it to be an "Or" search. If I type in it "Cakes, Cheese", I don't want it to bring up results that contain cakes AND cheese, I want it to bring...
1
2305
by: Nour469 | last post by:
Hello, I have a problem when I run search, I have fields for: name, clientID and phoneNo. When a client calls I need to find them in the database, they might give me the name and it might not be spelled correctly, I need to search by phoneNo. (the fastest way!) I place the cursor in the appropriate field and click search. when the find window opens up, by default, the Look in: field is: 'Main application form: form' and the 'search field...
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9525
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10221
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9050
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7546
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5569
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4115
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3730
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2924
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.