Leave a comment

Comments 9

sea_of_flame November 16 2010, 08:57:07 UTC
https://www.google.com/webmasters/tools/

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

sea_of_flame November 16 2010, 08:59:21 UTC
(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?)

Reply


Redirect ewx November 16 2010, 09:12:58 UTC
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.

Reply

Re: Redirect undyingking November 16 2010, 09:23:15 UTC
Mm, I would be pretty impressed if they would allow that! But if not, she should still be able to do the equivalent in a .htaccess.

Reply

Re: Redirect ewx November 16 2010, 11:15:03 UTC
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...

Reply

bateleur November 16 2010, 18:28:02 UTC
I would say quite good odds actually, since WordPress (sort of) requires mod_rewrite.

Reply


undyingking November 16 2010, 09:20:53 UTC
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:

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

venta November 16 2010, 10:48:04 UTC
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.

Reply


bateleur November 16 2010, 18:41:01 UTC
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.

Reply


Leave a comment

Up