Saya mencoba agar SSI bekerja pada Debian yang menjalankan Apache, namun .shtml
file-file tersebut tidak diuraikan. Dari file PHP dengan phpinfo()
saya dapat melihat bahwa berikut ini muncul di bagian modul yang dimuat:
mod_mime_xattr mod_mime mod_mime_magic
Dalam /etc/apache2/mods-enabled/mime.conf
saya miliki (antara lain):
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
Dalam /etc/apache2/sites-enabled/domain.com.conf
(untuk virtual host yang dimaksud) saya punya:
<Directory /home/username/public_html>
Options +Includes
allow from all
AllowOverride All
</Directory>
dan untuk ukuran yang baik, saya menambahkan yang berikut juga:
<Directory />
Options +Includes
</directory>
Di file pengguna .htaccess
, saya mencoba menambahkan:
Options +Includes
AddType text/html shtml
AddHandler server-parsed shtml
Sepertinya tidak ada yang berhasil. Bagaimana saya bisa men-debug ini?
Edit:
Berikut adalah output ls /etc/apache2/mods-enabled/
dalam hal ini membantu
actions.conf dav_svn.load proxy_balancer.load
actions.load deflate.conf proxy.conf
alias.conf deflate.load proxy_connect.load
alias.load dir.conf proxy_http.load
auth_basic.load dir.load proxy.load
auth_digest.load env.load python.load
authn_file.load fcgid.conf reqtimeout.conf
authz_default.load fcgid.load reqtimeout.load
authz_groupfile.load mime.conf rewrite.load
authz_host.load mime.load ruby.load
authz_user.load mime_magic.conf setenvif.conf
autoindex.conf mime_magic.load setenvif.load
autoindex.load mime-xattr.load ssl.conf
cgi.load negotiation.conf ssl.load
dav_fs.conf negotiation.load status.conf
dav_fs.load php5.conf status.load
dav.load php5.load suexec.load
dav_svn.conf proxy_balancer.conf
[error] an unknown filter was not added: includes
AddOutputFilter INCLUDES .shtml
menghilangkan kesalahan, tetapi masih tidak menyelesaikan masalah
.shtml
halaman, apakah Anda melihat sesuatu di log kesalahan Apache?