alias.conf 743 B

1234567891011121314151617181920
  1. # Aliases: Add here as many aliases as you need (with no limit). The format is
  2. # Alias fakename realname
  3. #
  4. # Note that if you include a trailing / on fakename then the server will
  5. # require it to be present in the URL. So "/icons" isn't aliased in this
  6. # example, only "/icons/". If the fakename is slash-terminated, then the
  7. # realname must also be slash terminated, and if the fakename omits the
  8. # trailing slash, the realname must also omit it.
  9. #
  10. # We include the /icons/ alias for FancyIndexed directory listings. If
  11. # you do not use FancyIndexing, you may comment this out.
  12. Alias /icons/ "/usr/share/apache2/icons/"
  13. <Directory "/usr/share/apache2/icons">
  14. Options FollowSymlinks
  15. AllowOverride None
  16. Require all granted
  17. </Directory>