Basically, what I'm looking for, is some sort of script that I can drop into
a folder on my server, and when someone visits that specific folder (I'm
going to remove all file's from the folder as I've moved the site), the
script detects the file is not there, and auto-redirects them to the new
location (kind of like a "clever" 404 page).

As I do not have direct access to my server's settings (such as editing 404
pages etc), I cannot do it the "normal" way.

Anyone have any ideas, suggestions, scripts, reference links?

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)

Re: Can you help? by Jeff

Jeff
Thu Oct 30 18:41:35 CST 2003

have an asp page called default.asp.

In that page put <%response.redirect http://www.mysite%>

Who cares whether script detects that the folder is empty. The folder is
empty anyway..??..??..!!?>??

wtf
You just said you will empty the folder




"Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> Basically, what I'm looking for, is some sort of script that I can drop
into
> a folder on my server, and when someone visits that specific folder (I'm
> going to remove all file's from the folder as I've moved the site), the
> script detects the file is not there, and auto-redirects them to the new
> location (kind of like a "clever" 404 page).
>
> As I do not have direct access to my server's settings (such as editing
404
> pages etc), I cannot do it the "normal" way.
>
> Anyone have any ideas, suggestions, scripts, reference links?
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
>



Re: Can you help? by Steven

Steven
Thu Oct 30 18:47:23 CST 2003

Yes but, people and search engines are still trying to access the old pages

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> have an asp page called default.asp.
>
> In that page put <%response.redirect http://www.mysite%>
>
> Who cares whether script detects that the folder is empty. The folder is
> empty anyway..??..??..!!?>??
>
> wtf
> You just said you will empty the folder
>
>
>
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > Basically, what I'm looking for, is some sort of script that I can drop
> into
> > a folder on my server, and when someone visits that specific folder (I'm
> > going to remove all file's from the folder as I've moved the site), the
> > script detects the file is not there, and auto-redirects them to the new
> > location (kind of like a "clever" 404 page).
> >
> > As I do not have direct access to my server's settings (such as editing
> 404
> > pages etc), I cannot do it the "normal" way.
> >
> > Anyone have any ideas, suggestions, scripts, reference links?
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> >
>
>



Re: Can you help? by Chris

Chris
Thu Oct 30 20:08:10 CST 2003

If its an ASP site and the pages are .asp then use the Global.asa and
redirect in the Session_OnStart sub. That will kick off every time an ASP
page is requested with no session active.
You can also use a custom 404 error page to redirect (that's the way MS do
it I believe).

See:
http://www.plinko.net/404/howto.asp?article=5
http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
http://www.highcontext.com/Articles/howto/404.php

Hope this helps,

Chris.

"Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
Yes but, people and search engines are still trying to access the old pages

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> have an asp page called default.asp.
>
> In that page put <%response.redirect http://www.mysite%>
>
> Who cares whether script detects that the folder is empty. The folder is
> empty anyway..??..??..!!?>??
>
> wtf
> You just said you will empty the folder
>
>
>
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > Basically, what I'm looking for, is some sort of script that I can drop
> into
> > a folder on my server, and when someone visits that specific folder (I'm
> > going to remove all file's from the folder as I've moved the site), the
> > script detects the file is not there, and auto-redirects them to the new
> > location (kind of like a "clever" 404 page).
> >
> > As I do not have direct access to my server's settings (such as editing
> 404
> > pages etc), I cannot do it the "normal" way.
> >
> > Anyone have any ideas, suggestions, scripts, reference links?
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> >
>
>




Re: Can you help? by Steven

Steven
Thu Oct 30 20:17:35 CST 2003

Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.

I've read about the custom 404 pages, but from what I can gather, they need
to be set at server level, and can't be simply "dropped" into a folder.
Unfortunately I don't have access to my site's actual server settings.

Basically what I need is a re-direct script that will re-direct regardless
of whether file's are in the folder or not. using a default.asp or
index.html etc page is fine, however, that won't trap any of the other pages
accessed.....(hope I am making sense?)

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> If its an ASP site and the pages are .asp then use the Global.asa and
> redirect in the Session_OnStart sub. That will kick off every time an ASP
> page is requested with no session active.
> You can also use a custom 404 error page to redirect (that's the way MS do
> it I believe).
>
> See:
> http://www.plinko.net/404/howto.asp?article=5
> http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> http://www.highcontext.com/Articles/howto/404.php
>
> Hope this helps,
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> Yes but, people and search engines are still trying to access the old
pages
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > have an asp page called default.asp.
> >
> > In that page put <%response.redirect http://www.mysite%>
> >
> > Who cares whether script detects that the folder is empty. The folder
is
> > empty anyway..??..??..!!?>??
> >
> > wtf
> > You just said you will empty the folder
> >
> >
> >
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > Basically, what I'm looking for, is some sort of script that I can
drop
> > into
> > > a folder on my server, and when someone visits that specific folder
(I'm
> > > going to remove all file's from the folder as I've moved the site),
the
> > > script detects the file is not there, and auto-redirects them to the
new
> > > location (kind of like a "clever" 404 page).
> > >
> > > As I do not have direct access to my server's settings (such as
editing
> > 404
> > > pages etc), I cannot do it the "normal" way.
> > >
> > > Anyone have any ideas, suggestions, scripts, reference links?
> > >
> > > --
> > > Regards
> > >
> > > Steven Burn
> > > Ur I.T. Mate Group CEO
> > > www.it-mate.co.uk
> > >
> > > Disclaimer:
> > > I know I'm probably wrong, I just like taking part :o)
> > >
> > >
> > >
> >
> >
>
>
>



Re: Can you help? by Chris

Chris
Thu Oct 30 20:26:22 CST 2003

I believe that the custom 404 and Global.asa methods are the only methods
available in IIS for non .asp (and .asp of course) pages and .asp pages
respectively.

If it's apache then you may be able to do it with the .htaccess file?

You may be able to ask your host to set it up for you - might charge you
though?

Chris.

"Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.

I've read about the custom 404 pages, but from what I can gather, they need
to be set at server level, and can't be simply "dropped" into a folder.
Unfortunately I don't have access to my site's actual server settings.

Basically what I need is a re-direct script that will re-direct regardless
of whether file's are in the folder or not. using a default.asp or
index.html etc page is fine, however, that won't trap any of the other pages
accessed.....(hope I am making sense?)

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> If its an ASP site and the pages are .asp then use the Global.asa and
> redirect in the Session_OnStart sub. That will kick off every time an ASP
> page is requested with no session active.
> You can also use a custom 404 error page to redirect (that's the way MS do
> it I believe).
>
> See:
> http://www.plinko.net/404/howto.asp?article=5
> http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> http://www.highcontext.com/Articles/howto/404.php
>
> Hope this helps,
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> Yes but, people and search engines are still trying to access the old
pages
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > have an asp page called default.asp.
> >
> > In that page put <%response.redirect http://www.mysite%>
> >
> > Who cares whether script detects that the folder is empty. The folder
is
> > empty anyway..??..??..!!?>??
> >
> > wtf
> > You just said you will empty the folder
> >
> >
> >
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > Basically, what I'm looking for, is some sort of script that I can
drop
> > into
> > > a folder on my server, and when someone visits that specific folder
(I'm
> > > going to remove all file's from the folder as I've moved the site),
the
> > > script detects the file is not there, and auto-redirects them to the
new
> > > location (kind of like a "clever" 404 page).
> > >
> > > As I do not have direct access to my server's settings (such as
editing
> > 404
> > > pages etc), I cannot do it the "normal" way.
> > >
> > > Anyone have any ideas, suggestions, scripts, reference links?
> > >
> > > --
> > > Regards
> > >
> > > Steven Burn
> > > Ur I.T. Mate Group CEO
> > > www.it-mate.co.uk
> > >
> > > Disclaimer:
> > > I know I'm probably wrong, I just like taking part :o)
> > >
> > >
> > >
> >
> >
>
>
>




Re: Can you help? by Steven

Steven
Thu Oct 30 20:37:14 CST 2003

It's an IIS server.

I've spoken with my host about it but, unfortunately, they aren't able to
provide that service for me.

Thanks anyway.

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:#Ch5hZ1nDHA.1408@TK2MSFTNGP11.phx.gbl...
> I believe that the custom 404 and Global.asa methods are the only methods
> available in IIS for non .asp (and .asp of course) pages and .asp pages
> respectively.
>
> If it's apache then you may be able to do it with the .htaccess file?
>
> You may be able to ask your host to set it up for you - might charge you
> though?
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
> Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.
>
> I've read about the custom 404 pages, but from what I can gather, they
need
> to be set at server level, and can't be simply "dropped" into a folder.
> Unfortunately I don't have access to my site's actual server settings.
>
> Basically what I need is a re-direct script that will re-direct regardless
> of whether file's are in the folder or not. using a default.asp or
> index.html etc page is fine, however, that won't trap any of the other
pages
> accessed.....(hope I am making sense?)
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> > If its an ASP site and the pages are .asp then use the Global.asa and
> > redirect in the Session_OnStart sub. That will kick off every time an
ASP
> > page is requested with no session active.
> > You can also use a custom 404 error page to redirect (that's the way MS
do
> > it I believe).
> >
> > See:
> > http://www.plinko.net/404/howto.asp?article=5
> > http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> > http://www.highcontext.com/Articles/howto/404.php
> >
> > Hope this helps,
> >
> > Chris.
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> > Yes but, people and search engines are still trying to access the old
> pages
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> > Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> > news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > > have an asp page called default.asp.
> > >
> > > In that page put <%response.redirect http://www.mysite%>
> > >
> > > Who cares whether script detects that the folder is empty. The folder
> is
> > > empty anyway..??..??..!!?>??
> > >
> > > wtf
> > > You just said you will empty the folder
> > >
> > >
> > >
> > >
> > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > > Basically, what I'm looking for, is some sort of script that I can
> drop
> > > into
> > > > a folder on my server, and when someone visits that specific folder
> (I'm
> > > > going to remove all file's from the folder as I've moved the site),
> the
> > > > script detects the file is not there, and auto-redirects them to the
> new
> > > > location (kind of like a "clever" 404 page).
> > > >
> > > > As I do not have direct access to my server's settings (such as
> editing
> > > 404
> > > > pages etc), I cannot do it the "normal" way.
> > > >
> > > > Anyone have any ideas, suggestions, scripts, reference links?
> > > >
> > > > --
> > > > Regards
> > > >
> > > > Steven Burn
> > > > Ur I.T. Mate Group CEO
> > > > www.it-mate.co.uk
> > > >
> > > > Disclaimer:
> > > > I know I'm probably wrong, I just like taking part :o)
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
> >
>
>
>



Re: Can you help? by Tom

Tom
Thu Oct 30 22:19:14 CST 2003

How about just putting in new versions of the old pages? Each new version,
just redirects to your new site.
Obviously, that wouldn't work for images, but it would catch most of the
users.

"Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> Basically, what I'm looking for, is some sort of script that I can drop
into
> a folder on my server, and when someone visits that specific folder (I'm
> going to remove all file's from the folder as I've moved the site), the
> script detects the file is not there, and auto-redirects them to the new
> location (kind of like a "clever" 404 page).
>
> As I do not have direct access to my server's settings (such as editing
404
> pages etc), I cannot do it the "normal" way.
>
> Anyone have any ideas, suggestions, scripts, reference links?
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
>



Re: Can you help? by Chris

Chris
Fri Oct 31 03:59:06 CST 2003

How about you change the DNS entries for that host header to point to an web
server that will (OK, you'd have to find an ASP host that's willing to
provide the redirection or a free host on apache etc.)?
This is of course presuming you have access to your domains DNS entries /
nameserver.

Chris.

"Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
news:OdZz8e1nDHA.2592@TK2MSFTNGP10.phx.gbl...
It's an IIS server.

I've spoken with my host about it but, unfortunately, they aren't able to
provide that service for me.

Thanks anyway.

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:#Ch5hZ1nDHA.1408@TK2MSFTNGP11.phx.gbl...
> I believe that the custom 404 and Global.asa methods are the only methods
> available in IIS for non .asp (and .asp of course) pages and .asp pages
> respectively.
>
> If it's apache then you may be able to do it with the .htaccess file?
>
> You may be able to ask your host to set it up for you - might charge you
> though?
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
> Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.
>
> I've read about the custom 404 pages, but from what I can gather, they
need
> to be set at server level, and can't be simply "dropped" into a folder.
> Unfortunately I don't have access to my site's actual server settings.
>
> Basically what I need is a re-direct script that will re-direct regardless
> of whether file's are in the folder or not. using a default.asp or
> index.html etc page is fine, however, that won't trap any of the other
pages
> accessed.....(hope I am making sense?)
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> > If its an ASP site and the pages are .asp then use the Global.asa and
> > redirect in the Session_OnStart sub. That will kick off every time an
ASP
> > page is requested with no session active.
> > You can also use a custom 404 error page to redirect (that's the way MS
do
> > it I believe).
> >
> > See:
> > http://www.plinko.net/404/howto.asp?article=5
> > http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> > http://www.highcontext.com/Articles/howto/404.php
> >
> > Hope this helps,
> >
> > Chris.
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> > Yes but, people and search engines are still trying to access the old
> pages
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> > Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> > news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > > have an asp page called default.asp.
> > >
> > > In that page put <%response.redirect http://www.mysite%>
> > >
> > > Who cares whether script detects that the folder is empty. The folder
> is
> > > empty anyway..??..??..!!?>??
> > >
> > > wtf
> > > You just said you will empty the folder
> > >
> > >
> > >
> > >
> > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > > Basically, what I'm looking for, is some sort of script that I can
> drop
> > > into
> > > > a folder on my server, and when someone visits that specific folder
> (I'm
> > > > going to remove all file's from the folder as I've moved the site),
> the
> > > > script detects the file is not there, and auto-redirects them to the
> new
> > > > location (kind of like a "clever" 404 page).
> > > >
> > > > As I do not have direct access to my server's settings (such as
> editing
> > > 404
> > > > pages etc), I cannot do it the "normal" way.
> > > >
> > > > Anyone have any ideas, suggestions, scripts, reference links?
> > > >
> > > > --
> > > > Regards
> > > >
> > > > Steven Burn
> > > > Ur I.T. Mate Group CEO
> > > > www.it-mate.co.uk
> > > >
> > > > Disclaimer:
> > > > I know I'm probably wrong, I just like taking part :o)
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
> >
>
>
>




Re: Can you help? by William

William
Fri Oct 31 04:56:41 CST 2003

Tom B wrote:
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
>> Basically, what I'm looking for, is some sort of script that I can
>> drop into a folder on my server, and when someone visits that
>> specific folder (I'm going to remove all file's from the folder as
>> I've moved the site), the script detects the file is not there, and
>> auto-redirects them to the new location (kind of like a "clever" 404
>> page).
>> ...
>>
> How about just putting in new versions of the old pages? Each new
> version, just redirects to your new site.

seems to be the O/Ps best option given the constraints.

> Obviously, that wouldn't work for images, but it would catch most of
> the users.
>

why not?

--
William Tasso - http://WilliamTasso.com



Re: Can you help? by Mike

Mike
Fri Oct 31 09:16:37 CST 2003

If it's an ASP site then do what Chris recommended.

Otherwise, put this script in each html page on the site:

<script Language="JavaScript">
window.navigate("http://www.mynewsite.com");
</script>

Any old page accesses via search engines will direct the browser to the new
site.

Mike



"Chris Barber" <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:%23Ch5hZ1nDHA.1408@TK2MSFTNGP11.phx.gbl...
> I believe that the custom 404 and Global.asa methods are the only methods
> available in IIS for non .asp (and .asp of course) pages and .asp pages
> respectively.
>
> If it's apache then you may be able to do it with the .htaccess file?
>
> You may be able to ask your host to set it up for you - might charge you
> though?
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
> Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.
>
> I've read about the custom 404 pages, but from what I can gather, they
need
> to be set at server level, and can't be simply "dropped" into a folder.
> Unfortunately I don't have access to my site's actual server settings.
>
> Basically what I need is a re-direct script that will re-direct regardless
> of whether file's are in the folder or not. using a default.asp or
> index.html etc page is fine, however, that won't trap any of the other
pages
> accessed.....(hope I am making sense?)
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> > If its an ASP site and the pages are .asp then use the Global.asa and
> > redirect in the Session_OnStart sub. That will kick off every time an
ASP
> > page is requested with no session active.
> > You can also use a custom 404 error page to redirect (that's the way MS
do
> > it I believe).
> >
> > See:
> > http://www.plinko.net/404/howto.asp?article=5
> > http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> > http://www.highcontext.com/Articles/howto/404.php
> >
> > Hope this helps,
> >
> > Chris.
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> > Yes but, people and search engines are still trying to access the old
> pages
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> > Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> > news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > > have an asp page called default.asp.
> > >
> > > In that page put <%response.redirect http://www.mysite%>
> > >
> > > Who cares whether script detects that the folder is empty. The folder
> is
> > > empty anyway..??..??..!!?>??
> > >
> > > wtf
> > > You just said you will empty the folder
> > >
> > >
> > >
> > >
> > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > > Basically, what I'm looking for, is some sort of script that I can
> drop
> > > into
> > > > a folder on my server, and when someone visits that specific folder
> (I'm
> > > > going to remove all file's from the folder as I've moved the site),
> the
> > > > script detects the file is not there, and auto-redirects them to the
> new
> > > > location (kind of like a "clever" 404 page).
> > > >
> > > > As I do not have direct access to my server's settings (such as
> editing
> > > 404
> > > > pages etc), I cannot do it the "normal" way.
> > > >
> > > > Anyone have any ideas, suggestions, scripts, reference links?
> > > >
> > > > --
> > > > Regards
> > > >
> > > > Steven Burn
> > > > Ur I.T. Mate Group CEO
> > > > www.it-mate.co.uk
> > > >
> > > > Disclaimer:
> > > > I know I'm probably wrong, I just like taking part :o)
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
> >
>
>
>



Re: Can you help? by TomB

TomB
Fri Oct 31 09:38:19 CST 2003

Because the o/p has no control over the server, so an end user requesting
http://server/image1.jpg will get an error.
Although....the images could also be replaced with an image containing the
new url.


"William Tasso" <news27@tbdata.com> wrote in message
news:ul8Dq15nDHA.1004@TK2MSFTNGP09.phx.gbl...
> Tom B wrote:
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> >> Basically, what I'm looking for, is some sort of script that I can
> >> drop into a folder on my server, and when someone visits that
> >> specific folder (I'm going to remove all file's from the folder as
> >> I've moved the site), the script detects the file is not there, and
> >> auto-redirects them to the new location (kind of like a "clever" 404
> >> page).
> >> ...
> >>
> > How about just putting in new versions of the old pages? Each new
> > version, just redirects to your new site.
>
> seems to be the O/Ps best option given the constraints.
>
> > Obviously, that wouldn't work for images, but it would catch most of
> > the users.
> >
>
> why not?
>
> --
> William Tasso - http://WilliamTasso.com
>
>



Re: Can you help? by Steven

Steven
Fri Oct 31 11:01:02 CST 2003

I was going to do a re-direction with Javascript but, there's over 300 pages
:o( (very time consuming to do that).

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Mike Florio <mike@micro-point.com> wrote in message
news:vq4v6mj62k7edc@corp.supernews.com...
> If it's an ASP site then do what Chris recommended.
>
> Otherwise, put this script in each html page on the site:
>
> <script Language="JavaScript">
> window.navigate("http://www.mynewsite.com");
> </script>
>
> Any old page accesses via search engines will direct the browser to the
new
> site.
>
> Mike
>
>
>
> "Chris Barber" <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> news:%23Ch5hZ1nDHA.1408@TK2MSFTNGP11.phx.gbl...
> > I believe that the custom 404 and Global.asa methods are the only
methods
> > available in IIS for non .asp (and .asp of course) pages and .asp pages
> > respectively.
> >
> > If it's apache then you may be able to do it with the .htaccess file?
> >
> > You may be able to ask your host to set it up for you - might charge you
> > though?
> >
> > Chris.
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
> > Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.
> >
> > I've read about the custom 404 pages, but from what I can gather, they
> need
> > to be set at server level, and can't be simply "dropped" into a folder.
> > Unfortunately I don't have access to my site's actual server settings.
> >
> > Basically what I need is a re-direct script that will re-direct
regardless
> > of whether file's are in the folder or not. using a default.asp or
> > index.html etc page is fine, however, that won't trap any of the other
> pages
> > accessed.....(hope I am making sense?)
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> > Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> > news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> > > If its an ASP site and the pages are .asp then use the Global.asa and
> > > redirect in the Session_OnStart sub. That will kick off every time an
> ASP
> > > page is requested with no session active.
> > > You can also use a custom 404 error page to redirect (that's the way
MS
> do
> > > it I believe).
> > >
> > > See:
> > > http://www.plinko.net/404/howto.asp?article=5
> > >
http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> > > http://www.highcontext.com/Articles/howto/404.php
> > >
> > > Hope this helps,
> > >
> > > Chris.
> > >
> > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> > > Yes but, people and search engines are still trying to access the old
> > pages
> > >
> > > --
> > > Regards
> > >
> > > Steven Burn
> > > Ur I.T. Mate Group CEO
> > > www.it-mate.co.uk
> > >
> > > Disclaimer:
> > > I know I'm probably wrong, I just like taking part :o)
> > >
> > >
> > > Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> > > news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > > > have an asp page called default.asp.
> > > >
> > > > In that page put <%response.redirect http://www.mysite%>
> > > >
> > > > Who cares whether script detects that the folder is empty. The
folder
> > is
> > > > empty anyway..??..??..!!?>??
> > > >
> > > > wtf
> > > > You just said you will empty the folder
> > > >
> > > >
> > > >
> > > >
> > > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > > > Basically, what I'm looking for, is some sort of script that I can
> > drop
> > > > into
> > > > > a folder on my server, and when someone visits that specific
folder
> > (I'm
> > > > > going to remove all file's from the folder as I've moved the
site),
> > the
> > > > > script detects the file is not there, and auto-redirects them to
the
> > new
> > > > > location (kind of like a "clever" 404 page).
> > > > >
> > > > > As I do not have direct access to my server's settings (such as
> > editing
> > > > 404
> > > > > pages etc), I cannot do it the "normal" way.
> > > > >
> > > > > Anyone have any ideas, suggestions, scripts, reference links?
> > > > >
> > > > > --
> > > > > Regards
> > > > >
> > > > > Steven Burn
> > > > > Ur I.T. Mate Group CEO
> > > > > www.it-mate.co.uk
> > > > >
> > > > > Disclaimer:
> > > > > I know I'm probably wrong, I just like taking part :o)
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
> >
>
>



Re: Can you help? by Steven

Steven
Fri Oct 31 11:00:01 CST 2003

hehe, don't have access to those either :o(

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:OaSpgW5nDHA.2424@TK2MSFTNGP10.phx.gbl...
> How about you change the DNS entries for that host header to point to an
web
> server that will (OK, you'd have to find an ASP host that's willing to
> provide the redirection or a free host on apache etc.)?
> This is of course presuming you have access to your domains DNS entries /
> nameserver.
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:OdZz8e1nDHA.2592@TK2MSFTNGP10.phx.gbl...
> It's an IIS server.
>
> I've spoken with my host about it but, unfortunately, they aren't able to
> provide that service for me.
>
> Thanks anyway.
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> news:#Ch5hZ1nDHA.1408@TK2MSFTNGP11.phx.gbl...
> > I believe that the custom 404 and Global.asa methods are the only
methods
> > available in IIS for non .asp (and .asp of course) pages and .asp pages
> > respectively.
> >
> > If it's apache then you may be able to do it with the .htaccess file?
> >
> > You may be able to ask your host to set it up for you - might charge you
> > though?
> >
> > Chris.
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
> > Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.
> >
> > I've read about the custom 404 pages, but from what I can gather, they
> need
> > to be set at server level, and can't be simply "dropped" into a folder.
> > Unfortunately I don't have access to my site's actual server settings.
> >
> > Basically what I need is a re-direct script that will re-direct
regardless
> > of whether file's are in the folder or not. using a default.asp or
> > index.html etc page is fine, however, that won't trap any of the other
> pages
> > accessed.....(hope I am making sense?)
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> > Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> > news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> > > If its an ASP site and the pages are .asp then use the Global.asa and
> > > redirect in the Session_OnStart sub. That will kick off every time an
> ASP
> > > page is requested with no session active.
> > > You can also use a custom 404 error page to redirect (that's the way
MS
> do
> > > it I believe).
> > >
> > > See:
> > > http://www.plinko.net/404/howto.asp?article=5
> > >
http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> > > http://www.highcontext.com/Articles/howto/404.php
> > >
> > > Hope this helps,
> > >
> > > Chris.
> > >
> > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> > > Yes but, people and search engines are still trying to access the old
> > pages
> > >
> > > --
> > > Regards
> > >
> > > Steven Burn
> > > Ur I.T. Mate Group CEO
> > > www.it-mate.co.uk
> > >
> > > Disclaimer:
> > > I know I'm probably wrong, I just like taking part :o)
> > >
> > >
> > > Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> > > news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > > > have an asp page called default.asp.
> > > >
> > > > In that page put <%response.redirect http://www.mysite%>
> > > >
> > > > Who cares whether script detects that the folder is empty. The
folder
> > is
> > > > empty anyway..??..??..!!?>??
> > > >
> > > > wtf
> > > > You just said you will empty the folder
> > > >
> > > >
> > > >
> > > >
> > > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > > > Basically, what I'm looking for, is some sort of script that I can
> > drop
> > > > into
> > > > > a folder on my server, and when someone visits that specific
folder
> > (I'm
> > > > > going to remove all file's from the folder as I've moved the
site),
> > the
> > > > > script detects the file is not there, and auto-redirects them to
the
> > new
> > > > > location (kind of like a "clever" 404 page).
> > > > >
> > > > > As I do not have direct access to my server's settings (such as
> > editing
> > > > 404
> > > > > pages etc), I cannot do it the "normal" way.
> > > > >
> > > > > Anyone have any ideas, suggestions, scripts, reference links?
> > > > >
> > > > > --
> > > > > Regards
> > > > >
> > > > > Steven Burn
> > > > > Ur I.T. Mate Group CEO
> > > > > www.it-mate.co.uk
> > > > >
> > > > > Disclaimer:
> > > > > I know I'm probably wrong, I just like taking part :o)
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
> >
>
>
>



Re: Can you help? by Steven

Steven
Fri Oct 31 11:02:11 CST 2003

Cheers for the suggestion Tom. That seems like my best option at the moment.

Unfortunately, that means I'd have to do that for all 300+ pages :o(

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Tom B <shuckle@NOSPAMhotmail.com> wrote in message
news:uaqqlY2nDHA.3024@tk2msftngp13.phx.gbl...
> How about just putting in new versions of the old pages? Each new
version,
> just redirects to your new site.
> Obviously, that wouldn't work for images, but it would catch most of the
> users.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > Basically, what I'm looking for, is some sort of script that I can drop
> into
> > a folder on my server, and when someone visits that specific folder (I'm
> > going to remove all file's from the folder as I've moved the site), the
> > script detects the file is not there, and auto-redirects them to the new
> > location (kind of like a "clever" 404 page).
> >
> > As I do not have direct access to my server's settings (such as editing
> 404
> > pages etc), I cannot do it the "normal" way.
> >
> > Anyone have any ideas, suggestions, scripts, reference links?
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> >
>
>



Re: Can you help? by Chris

Chris
Fri Oct 31 11:08:19 CST 2003

So who is your ISP?
They should provide access to the nameserver?

Chris.

"Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
news:eIc0EB9nDHA.2064@TK2MSFTNGP11.phx.gbl...
hehe, don't have access to those either :o(

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:OaSpgW5nDHA.2424@TK2MSFTNGP10.phx.gbl...
> How about you change the DNS entries for that host header to point to an
web
> server that will (OK, you'd have to find an ASP host that's willing to
> provide the redirection or a free host on apache etc.)?
> This is of course presuming you have access to your domains DNS entries /
> nameserver.
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:OdZz8e1nDHA.2592@TK2MSFTNGP10.phx.gbl...
> It's an IIS server.
>
> I've spoken with my host about it but, unfortunately, they aren't able to
> provide that service for me.
>
> Thanks anyway.
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> news:#Ch5hZ1nDHA.1408@TK2MSFTNGP11.phx.gbl...
> > I believe that the custom 404 and Global.asa methods are the only
methods
> > available in IIS for non .asp (and .asp of course) pages and .asp pages
> > respectively.
> >
> > If it's apache then you may be able to do it with the .htaccess file?
> >
> > You may be able to ask your host to set it up for you - might charge you
> > though?
> >
> > Chris.
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
> > Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.
> >
> > I've read about the custom 404 pages, but from what I can gather, they
> need
> > to be set at server level, and can't be simply "dropped" into a folder.
> > Unfortunately I don't have access to my site's actual server settings.
> >
> > Basically what I need is a re-direct script that will re-direct
regardless
> > of whether file's are in the folder or not. using a default.asp or
> > index.html etc page is fine, however, that won't trap any of the other
> pages
> > accessed.....(hope I am making sense?)
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> > Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> > news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> > > If its an ASP site and the pages are .asp then use the Global.asa and
> > > redirect in the Session_OnStart sub. That will kick off every time an
> ASP
> > > page is requested with no session active.
> > > You can also use a custom 404 error page to redirect (that's the way
MS
> do
> > > it I believe).
> > >
> > > See:
> > > http://www.plinko.net/404/howto.asp?article=5
> > >
http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> > > http://www.highcontext.com/Articles/howto/404.php
> > >
> > > Hope this helps,
> > >
> > > Chris.
> > >
> > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> > > Yes but, people and search engines are still trying to access the old
> > pages
> > >
> > > --
> > > Regards
> > >
> > > Steven Burn
> > > Ur I.T. Mate Group CEO
> > > www.it-mate.co.uk
> > >
> > > Disclaimer:
> > > I know I'm probably wrong, I just like taking part :o)
> > >
> > >
> > > Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> > > news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > > > have an asp page called default.asp.
> > > >
> > > > In that page put <%response.redirect http://www.mysite%>
> > > >
> > > > Who cares whether script detects that the folder is empty. The
folder
> > is
> > > > empty anyway..??..??..!!?>??
> > > >
> > > > wtf
> > > > You just said you will empty the folder
> > > >
> > > >
> > > >
> > > >
> > > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > > > Basically, what I'm looking for, is some sort of script that I can
> > drop
> > > > into
> > > > > a folder on my server, and when someone visits that specific
folder
> > (I'm
> > > > > going to remove all file's from the folder as I've moved the
site),
> > the
> > > > > script detects the file is not there, and auto-redirects them to
the
> > new
> > > > > location (kind of like a "clever" 404 page).
> > > > >
> > > > > As I do not have direct access to my server's settings (such as
> > editing
> > > > 404
> > > > > pages etc), I cannot do it the "normal" way.
> > > > >
> > > > > Anyone have any ideas, suggestions, scripts, reference links?
> > > > >
> > > > > --
> > > > > Regards
> > > > >
> > > > > Steven Burn
> > > > > Ur I.T. Mate Group CEO
> > > > > www.it-mate.co.uk
> > > > >
> > > > > Disclaimer:
> > > > > I know I'm probably wrong, I just like taking part :o)
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
> >
>
>
>




Re: Can you help? by Steven

Steven
Fri Oct 31 11:20:04 CST 2003

I'm using Inspiratech Ltd (www.inspiratech.uk.com) for my hosting and domain
name

--
Regards

Steven Burn
Ur I.T. Mate Group CEO
www.it-mate.co.uk

Disclaimer:
I know I'm probably wrong, I just like taking part :o)


Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
news:eJIsWG9nDHA.1728@TK2MSFTNGP09.phx.gbl...
> So who is your ISP?
> They should provide access to the nameserver?
>
> Chris.
>
> "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> news:eIc0EB9nDHA.2064@TK2MSFTNGP11.phx.gbl...
> hehe, don't have access to those either :o(
>
> --
> Regards
>
> Steven Burn
> Ur I.T. Mate Group CEO
> www.it-mate.co.uk
>
> Disclaimer:
> I know I'm probably wrong, I just like taking part :o)
>
>
> Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> news:OaSpgW5nDHA.2424@TK2MSFTNGP10.phx.gbl...
> > How about you change the DNS entries for that host header to point to an
> web
> > server that will (OK, you'd have to find an ASP host that's willing to
> > provide the redirection or a free host on apache etc.)?
> > This is of course presuming you have access to your domains DNS entries
/
> > nameserver.
> >
> > Chris.
> >
> > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > news:OdZz8e1nDHA.2592@TK2MSFTNGP10.phx.gbl...
> > It's an IIS server.
> >
> > I've spoken with my host about it but, unfortunately, they aren't able
to
> > provide that service for me.
> >
> > Thanks anyway.
> >
> > --
> > Regards
> >
> > Steven Burn
> > Ur I.T. Mate Group CEO
> > www.it-mate.co.uk
> >
> > Disclaimer:
> > I know I'm probably wrong, I just like taking part :o)
> >
> >
> > Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> > news:#Ch5hZ1nDHA.1408@TK2MSFTNGP11.phx.gbl...
> > > I believe that the custom 404 and Global.asa methods are the only
> methods
> > > available in IIS for non .asp (and .asp of course) pages and .asp
pages
> > > respectively.
> > >
> > > If it's apache then you may be able to do it with the .htaccess file?
> > >
> > > You may be able to ask your host to set it up for you - might charge
you
> > > though?
> > >
> > > Chris.
> > >
> > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > news:eAXH%23T1nDHA.2732@TK2MSFTNGP11.phx.gbl...
> > > Chris, unfortunately, they're a mix of .jpg, .gif and .html pages.
> > >
> > > I've read about the custom 404 pages, but from what I can gather, they
> > need
> > > to be set at server level, and can't be simply "dropped" into a
folder.
> > > Unfortunately I don't have access to my site's actual server settings.
> > >
> > > Basically what I need is a re-direct script that will re-direct
> regardless
> > > of whether file's are in the folder or not. using a default.asp or
> > > index.html etc page is fine, however, that won't trap any of the other
> > pages
> > > accessed.....(hope I am making sense?)
> > >
> > > --
> > > Regards
> > >
> > > Steven Burn
> > > Ur I.T. Mate Group CEO
> > > www.it-mate.co.uk
> > >
> > > Disclaimer:
> > > I know I'm probably wrong, I just like taking part :o)
> > >
> > >
> > > Chris Barber <chris@blue-canoe.co.uk.NOSPAM> wrote in message
> > > news:#IZ5WP1nDHA.2272@tk2msftngp13.phx.gbl...
> > > > If its an ASP site and the pages are .asp then use the Global.asa
and
> > > > redirect in the Session_OnStart sub. That will kick off every time
an
> > ASP
> > > > page is requested with no session active.
> > > > You can also use a custom 404 error page to redirect (that's the way
> MS
> > do
> > > > it I believe).
> > > >
> > > > See:
> > > > http://www.plinko.net/404/howto.asp?article=5
> > > >
> http://hotwired.lycos.com/webmonkey/02/40/index4a_page3.html?tw=backend
> > > > http://www.highcontext.com/Articles/howto/404.php
> > > >
> > > > Hope this helps,
> > > >
> > > > Chris.
> > > >
> > > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > > news:%230%23Fkh0nDHA.2012@TK2MSFTNGP12.phx.gbl...
> > > > Yes but, people and search engines are still trying to access the
old
> > > pages
> > > >
> > > > --
> > > > Regards
> > > >
> > > > Steven Burn
> > > > Ur I.T. Mate Group CEO
> > > > www.it-mate.co.uk
> > > >
> > > > Disclaimer:
> > > > I know I'm probably wrong, I just like taking part :o)
> > > >
> > > >
> > > > Jeff Clark <JeffC@NO_SPAMreturnventures.com> wrote in message
> > > > news:uNTA$e0nDHA.708@TK2MSFTNGP10.phx.gbl...
> > > > > have an asp page called default.asp.
> > > > >
> > > > > In that page put <%response.redirect http://www.mysite%>
> > > > >
> > > > > Who cares whether script detects that the folder is empty. The
> folder
> > > is
> > > > > empty anyway..??..??..!!?>??
> > > > >
> > > > > wtf
> > > > > You just said you will empty the folder
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > "Steven Burn" <ceo@PVT_it-mate.co.uk> wrote in message
> > > > > news:Ob7jKa0nDHA.2500@TK2MSFTNGP10.phx.gbl...
> > > > > > Basically, what I'm looking for, is some sort of script that I
can
> > > drop
> > > > > into
> > > > > > a folder on my server, and when someone visits that specific
> folder
> > > (I'm
> > > > > > going to remove all file's from the folder as I've moved the
> site),
> > > the
> > > > > > script detects the file is not there, and auto-redirects them to
> the
> > > new
> > > > > > location (kind of like a "clever" 404 page).
> > > > > >
> > > > > > As I do not have direct access to my server's settings (such as
> > > editing
> > > > > 404
> > > > > > pages etc), I cannot do it the "normal" way.
> > > > > >
> > > > > > Anyone have any ideas, suggestions, scripts, reference links?
> > > > > >
> > > > > > --
> > > > > > Regards
> > > > > >
> > > > > > Steven Burn
> > > > > > Ur I.T. Mate Group CEO
> > > > > > www.it-mate.co.uk
> > > > > >
> > > > > > Disclaimer:
> > > > > > I know I'm probably wrong, I just like taking part :o)
> > > > > >
> > > > > >
> > > > > >
> > > > >
> > > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> >
> >
> >
>
>
>