Debian
如何在 Apache2 Web 伺服器(Debian)上啟用 XBitHack?
我正在嘗試在 Debian 10 上執行的 Apache2 Web 伺服器上啟用 XBitHack。這就是我輸入的內容
/etc/apache2/apache2.conf
:<Directory /srv/> Options Indexes FollowSymLinks AllowOverride None Options +Includes AddType text/html .shtml AddHandler server-parsed .shtml XBitHack on Require all granted </Directory>
在使用 systemd 重新啟動後
apache2.service
,我被告知:AH00526: Syntax error on line 182 of /etc/apache2/apache2.conf: Invalid command 'XBitHack', perhaps misspelled or defined by a module not included in the server configuration Action 'start' failed.
我在這裡有什麼遺漏或做錯了嗎?
您需要
mod_include
在您的伺服器中啟用。跑
sudo a2enmod include
符號連結
include.load
到目錄並/etc/apache2/mods-available
重新/etc/apache2/mods-enabled
啟動伺服器。您還可以將
Options
指令合併到一行:Options Indexes FollowSymLinks Includes