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.
(Obviously that only works for google - but other search engines presumably offer similar tools...although I think google is still most people's default search engine, isn't it?)
If fsnet are using Apache and give you a reasonable degree of control then mod_rewrite is the (admittedly quite complicated) answer. Some other web swervers have something similar, but not all. And fsnet might not give you access to the relevant facilities.
Well, it would be controlled from .htaccess anyway, but they'd have to turn it on. Their web server does claim to be Apache so there's some small hope...
What sea_of_flame says above is all good, and Google Webmaster Tools has a load of other useful stuff too, so well worth getting yourself into.
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:
Sadly, I'm pretty sure that Freeserve don't allow any monkeying at all. I'm fairly sure I tried messing about with .htaccess a few years back, to no avail. What with Freeserve having been bought by Wannadoo and then been bought by Orange, and no one using dialup any more *and* me not being the official name on the account despite numerous attempts to change it (that's leathellin) it's vaguely impossible to find out anything about what is/isn't allowed/possible on fsnet webspace.
If you cannot use .htaccess or edit the Apache http.conf file (definitely not) then your only option is page-by-page redirection using meta tags or similar.
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.
Comments 9
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.
Reply
Reply
Reply
Reply
Reply
Reply
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 ( ... )
Reply
Reply
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.
Reply
Leave a comment