473,320 Members | 1,896 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

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 2243
From: Ma********@email.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.tut.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.com> 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

"MH" <no****@nowhere.no> wrote in message
news:bt**********@news1.tilbu1.nb.home.nl...
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.


Sure, if you can.

I'll never say that what I say is the only way... well, maybe
sometimes I'll say that... now I have a headache...
Jul 20 '05 #11

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

Similar topics

4
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
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...
2
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...
0
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...
0
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...
7
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...
4
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
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...
1
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...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.