/tmp is just an example. Files are located elsewhere, actually at a location where the rest should not be available/accessible. I only want to 'redirect' this file.
>
> You want to use <Directory /tmp> instead. I also strongly recommend
> storing your images in another path.
>
> On Mon, May 15, 2023 at 3:48 AM Marc <Marc@xxxxxxxxxxxxxxxxx
> <mailto:Marc@xxxxxxxxxxxxxxxxx> > wrote:
>
>
>
>
> > >
> > > How do I get that the file (docroot)/images/favicon.ico is not
> loaded
> > from the disk but instead from the /tmp/os-favicon.ico?
> >
> > Use the Alias directive.
> > https://httpd.apache.org/docs/2.4/urlmapping.html
> >
>
> Hmmm, so I am ending up with somwthing like this. Is that really
> the best way to do this?
>
> 61 Alias "/images/favicon.ico" "/tmp/os-
> favicon.ico"
> 62 <Location /tmp/favicon.ico>
> 63 Require all granted
> 64 </Location>
>
>