Apache2 и / путь значков, ведущий себя по-другому

Кроме того, можно заменить gzip bzip2 --best для намного лучшего сжатия:

sudo dd if=/dev/sda2 | bzip2 --best > /media/disk/$(date +%Y%m%d_%H%M%S)_sda2-backup.bz2
1
задан 15 July 2015 в 17:38
2 ответа

в Вашем httpd.conf у Вас есть что-то как

Alias /icons /path/to/icon/dir
1
ответ дан 3 December 2019 в 22:31

Apache2 выходит из коробки с файлом мода псевдонима, включенным в этом месте:

/etc/apache2/mods-available/alias.conf

, и это содержимое этого файла

<IfModule alias_module>
        # Aliases: Add here as many aliases as you need (with no limit). The format is
        # Alias fakename realname
        #
        # Note that if you include a trailing / on fakename then the server will
        # require it to be present in the URL.  So "/icons" isn't aliased in this
        # example, only "/icons/".  If the fakename is slash-terminated, then the
        # realname must also be slash terminated, and if the fakename omits the
        # trailing slash, the realname must also omit it.
        #
        # We include the /icons/ alias for FancyIndexed directory listings.  If
        # you do not use FancyIndexing, you may comment this out.

        Alias /icons/ "/usr/share/apache2/icons/"

        <Directory "/usr/share/apache2/icons">
                Options FollowSymlinks
                AllowOverride None
                Require all granted
        </Directory>

</IfModule>

. Таким образом, вы можете удалить символическую ссылку на

/etc/apache2/mods-enabled/alias.conf

, чтобы отключить поведение.

1
ответ дан 3 December 2019 в 22:31

Теги

Похожие вопросы