0

On IIS in a Windows VM Server, I have a "site" that just points to a folder with directory browsing enabled, so users can view the files of the folder easily from their browser. Can I somehow set a "favicon" to that IIS page? You know, the little icon that shows up in the browser tab?

2 Answers2

0

Do you think the website directory browsing page of the following style is too monotonous?

enter image description here

If you want to set a "favicon" for each directory item in the directory browsing page, this link may help you: Get nice looking directory listings for your IIS website with DirectoryListingModule

YurongDai
  • 1,362
  • 1
  • 2
  • 7
0

If you want to set the "favicon" for the page, just add the following code to the element:

<link rel="icon" href="http://example.com/favicon.png">

For details, please refer to: How to add a browser tab icon (favicon) for a website?

YurongDai
  • 1,362
  • 1
  • 2
  • 7