Welcome to MobyThreads.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

redirect download to another site

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Related Topics:
Redirect to other web site? - I just upgraded to Exchange 2003 from 5.5. We had OWA 5.5 installed on our IIS server from outside the company. I'm trying to figure out how to make the OWA from our current Extranet page. Simply linking to it doesn't work because it..

Where so I download IIS - Hello all, I just bought a computer and IIS does not come with it, nor that it is on the Windows XP CD. From my IIS is free, I can download it from somewhere on the MS page. I did it with PWS. Thanks

IIS download - My computer with Windows' XP home edition doesn't have IIS, can I download IIS from somewhere and installed it on my computer? if So, where can I download it? Thanks very much!

IIS Download - The download is asking for a file called however this file cannot be found on my system. Anyone have a spare file to use or to this file.

IIS Download - I have tried to load an old version of IIS from my operating it fails. Is there anywhere on the Microsoft site to download an old client version for use in a POC.
Next:  IIS: Access to IIS through MMC  
Author Message
dirk

External


Since: Feb 24, 2004
Posts: 6



(Msg. 1) Posted: Tue Feb 24, 2004 3:30 pm
Post subject: redirect download to another site
Archived from groups: microsoft>public>inetserver>iis (more info?)

Hi,


Some of my users are keeping "old" links to download files thus "generating"
404 errors.
My idea was that when a file is moved to a new location that they would
automaticly redirected.

Example:
link beta.company.com/sofware/beta/mysoftware.exe
is removed and since the software is released it's now available as
www.company.com/software/release/software_v1.exe

How can I automaticly redirect somebody that tries to download
beta.company.com/sofware/beta/mysoftware.exe to
www.company.com/software/release/software_v1.exe


I'm using IIS (on Win2K)


dirk.

 >> Stay informed about: redirect download to another site 
Back to top
Login to vote
bojo_do_not_sp

External


Since: Feb 24, 2004
Posts: 53



(Msg. 2) Posted: Tue Feb 24, 2004 4:40 pm
Post subject: Re: redirect download to another site [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

click on beta folder node in IIS web, properties, Directory tab -> A
redirection to a URL
and specify your release directory. This is available also per file basis

Bojidar Alexandrov

Dirk wrote:
 > Hi,
 >
 >
 > Some of my users are keeping "old" links to download files thus
 > "generating" 404 errors.
 > My idea was that when a file is moved to a new location that they
 > would automaticly redirected.
 >
 > Example:
 > link beta.company.com/sofware/beta/mysoftware.exe
 > is removed and since the software is released it's now available as
<font color=purple> > <a style='text-decoration: underline;' href="http://www.company.com/software/release/software_v1.exe</font" target="_blank">www.company.com/software/release/software_v1.exe</font</a>>
 >
 > How can I automaticly redirect somebody that tries to download
 > beta.company.com/sofware/beta/mysoftware.exe to
<font color=purple> > <a style='text-decoration: underline;' href="http://www.company.com/software/release/software_v1.exe</font" target="_blank">www.company.com/software/release/software_v1.exe</font</a>>
 >
 >
 > I'm using IIS (on Win2K)
 >
 >
 > dirk.<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: redirect download to another site 
Back to top
Login to vote
dirk

External


Since: Feb 24, 2004
Posts: 6



(Msg. 3) Posted: Tue Feb 24, 2004 4:40 pm
Post subject: Re: redirect download to another site [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

But this means that the "old" files should all stay in the "beta" folder?


dirk.

"Bojidar Alexandrov" <bojo_do_not_spam RemoveThis @kodar.net> wrote in message
news:ew1exrs%23DHA.4012@tk2msftngp13.phx.gbl...
 > click on beta folder node in IIS web, properties, Directory tab -> A
 > redirection to a URL
 > and specify your release directory. This is available also per file basis
 >
 > Bojidar Alexandrov
 >
 > Dirk wrote:
  > > Hi,
  > >
  > >
  > > Some of my users are keeping "old" links to download files thus
  > > "generating" 404 errors.
  > > My idea was that when a file is moved to a new location that they
  > > would automaticly redirected.
  > >
  > > Example:
  > > link beta.company.com/sofware/beta/mysoftware.exe
  > > is removed and since the software is released it's now available as
<font color=green>  > > <a style='text-decoration: underline;' href="http://www.company.com/software/release/software_v1.exe</font" target="_blank">www.company.com/software/release/software_v1.exe</font</a>>
  > >
  > > How can I automaticly redirect somebody that tries to download
  > > beta.company.com/sofware/beta/mysoftware.exe to
<font color=green>  > > <a style='text-decoration: underline;' href="http://www.company.com/software/release/software_v1.exe</font" target="_blank">www.company.com/software/release/software_v1.exe</font</a>>
  > >
  > >
  > > I'm using IIS (on Win2K)
  > >
  > >
  > > dirk.
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: redirect download to another site 
Back to top
Login to vote
bojo_do_not_sp

External


Since: Feb 24, 2004
Posts: 53



(Msg. 4) Posted: Tue Feb 24, 2004 6:56 pm
Post subject: Re: redirect download to another site [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Dirk wrote:
 > But this means that the "old" files should all stay in the "beta"
 > folder?

If file by file - yes.

 > dirk.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: redirect download to another site 
Back to top
Login to vote
kgafvert

External


Since: Aug 23, 2003
Posts: 2972



(Msg. 5) Posted: Tue Feb 24, 2004 7:41 pm
Post subject: Re: redirect download to another site [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hello,

Another way to this (in addition to what Bojidar said), would be to use an
ISAPI filter, and catch the request. So if the file was removed, you could
specify in the filter to redirect to another file (hence the old file does
not have to exist).

I'm sure that you can find some examples of this on google if you search for
ISAPI filter.

--
Regards,
Kristofer Gafvert - IIS MVP
Reply to newsgroup only. Remove NEWS if you must reply by email, but please
do not.
<a style='text-decoration: underline;' href="http://www.ilopia.com" target="_blank">www.ilopia.com</a> - FAQ and Tutorials for Windows Server 2003


"Dirk" <dirk RemoveThis @nospam_to_remove_ofcourse.woodstone.nu> wrote in message
news:ON9rUms%23DHA.3668@TK2MSFTNGP09.phx.gbl...
 > Hi,
 >
 >
 > Some of my users are keeping "old" links to download files thus
"generating"
 > 404 errors.
 > My idea was that when a file is moved to a new location that they would
 > automaticly redirected.
 >
 > Example:
 > link beta.company.com/sofware/beta/mysoftware.exe
 > is removed and since the software is released it's now available as
<font color=purple> > <a style='text-decoration: underline;' href="http://www.company.com/software/release/software_v1.exe</font" target="_blank">www.company.com/software/release/software_v1.exe</font</a>>
 >
 > How can I automaticly redirect somebody that tries to download
 > beta.company.com/sofware/beta/mysoftware.exe to
<font color=purple> > <a style='text-decoration: underline;' href="http://www.company.com/software/release/software_v1.exe</font" target="_blank">www.company.com/software/release/software_v1.exe</font</a>>
 >
 >
 > I'm using IIS (on Win2K)
 >
 >
 > dirk.
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: redirect download to another site 
Back to top
Login to vote
bojo_do_not_sp

External


Since: Feb 24, 2004
Posts: 53



(Msg. 6) Posted: Tue Feb 24, 2004 11:19 pm
Post subject: Re: redirect download to another site [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

This lead me on idea
You can replace your 404 page with an asp page that redirect to right file.
Something like 500-100.asp

Bojidar Alexandrov
 >> Stay informed about: redirect download to another site 
Back to top
Login to vote
dirk

External


Since: Feb 24, 2004
Posts: 6



(Msg. 7) Posted: Wed Feb 25, 2004 12:57 am
Post subject: Re: redirect download to another site [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

And within the replaced 404 page I should check what the request is and
based on that redirect to the correct file?

dirk.

"Bojidar Alexandrov" <bojo_do_not_spam.RemoveThis@kodar.net> wrote in message
news:uKIB7Kw%23DHA.2512@TK2MSFTNGP11.phx.gbl...
 > This lead me on idea
 > You can replace your 404 page with an asp page that redirect to right
file.
 > Something like 500-100.asp
 >
 > Bojidar Alexandrov
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: redirect download to another site 
Back to top
Login to vote
bojo_do_not_sp

External


Since: Feb 24, 2004
Posts: 53



(Msg. 8) Posted: Thu Feb 26, 2004 6:35 pm
Post subject: Re: redirect download to another site [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Back to top
Login to vote
Display posts from previous:   
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]