Return to sender. Address unknown.
Nov. 16th, 2010 08:23 am![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
I recently moved my dance team's website from some old free space which came with an ntl line in 1999 (and was only accessible via dial-up!) to something a bit more 21st century. Accordingly, I've put up a redirect page so that http://www.eastwick.fsnet.co.uk/mabel redirects to http://www.mabelgubbins.co.uk
However, a quick google suggests that there are a few pages which turn up quite high in the search queries (like our recipe for damson gin!) Including people's private bookmarks, there will be quite a few links to specific pages which have now gone away - and I've only redirected index.html
Is there a good way of catching eastwick.fsnet.co.uk/anything.html and sending it to index.html (or straight to the new site), or do I need to manually add redirect pages for every single page which used to exist? Assume I know nothing about clever scripty things (and also assume quite a lot of clever scripty things won't be supported).
Any tips for how to ensure that when people search for "mabel gubbins" the new site appears in preferece to the old one also appreciated. What I know about SEO could be written in quite large letters on a postage stamp.
However, a quick google suggests that there are a few pages which turn up quite high in the search queries (like our recipe for damson gin!) Including people's private bookmarks, there will be quite a few links to specific pages which have now gone away - and I've only redirected index.html
Is there a good way of catching eastwick.fsnet.co.uk/anything.html and sending it to index.html (or straight to the new site), or do I need to manually add redirect pages for every single page which used to exist? Assume I know nothing about clever scripty things (and also assume quite a lot of clever scripty things won't be supported).
Any tips for how to ensure that when people search for "mabel gubbins" the new site appears in preferece to the old one also appreciated. What I know about SEO could be written in quite large letters on a postage stamp.
no subject
Date: 2010-11-16 08:57 am (UTC)you'll need to create an account IIRC, but you can then report that a page or domain no longer exists (and/or that they no longer contain specific search terms), and they'll send ninja webcrawlers to verify and then remove those pages from theor search results & cache. I think they warn it may take up to 90 days, but IME it's rather quicker than that, and I suspect them reserve the 90 day thing to allow manual checking of potentially malicious requests.
no subject
Date: 2010-11-16 08:59 am (UTC)Redirect
Date: 2010-11-16 09:12 am (UTC)Re: Redirect
Date: 2010-11-16 09:23 am (UTC)Re: Redirect
Date: 2010-11-16 11:15 am (UTC)no subject
Date: 2010-11-16 06:28 pm (UTC)no subject
Date: 2010-11-16 09:20 am (UTC)You might also want to upload a bit of redirection code to the .htaccess file at the old location, for anyone who's got the old link bookmarked (if you think anyone might have). Doesn't have to be for each page individually, you can use a regexp along the lines of:
RewriteEngine on
RewriteCond %{HTTP_HOST} ^([^.:]+\.)*eastwick\.fsnet\.co\.uk\.?(:[0-9]*)?$ [NC]
RewriteRule ^(.*)$ http://www.mabelgubbins.co.uk/$1 [R=301,L]
(not tested!)
which effectively supplies a 301 page every time someone requests any file on the old site, and redicrets them to the new front page - this should also be followed and learnt from by any search engine spiders who haven't heard the good news from Google.
(It may be that Freeserve don't allow .htaccess monkeying, in which case this won't work. But worth trying. It may also be that they don't use Apache, in which case there'll be an equiv in whatever they do use.)
no subject
Date: 2010-11-16 10:48 am (UTC)no subject
Date: 2010-11-16 06:41 pm (UTC)However, you might be able to do a sly thing where you write a single page using JavaScript which gets the current URL and then redirects to a destination page calculated based on that URL. That way if you have hundreds of pages to redirect you at least only have to write one new one and then copy it lots of times.