Apache SSI 红帽 6

Apache SSI 红帽 6

我试图弄清楚 apache SSI 模块是如何工作的,

下列的mod_include pache 文档这是我的配置:

LoadModule include_module       /logiciel/httpd/httpd/modules/mod_include.so
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
<Directory test>
 # 
 Options Includes
 </Directory>

当然它不起作用。

我做错了什么?看来我做了同样的事情:另一个 SSI 帖子,我的 test.shtml 文件包含:

<!--#echo var="DATE_LOCAL" -->

在 rhel6 上使用 apache 2.4,

编辑虚拟配置:

VirtualHost configuration:
ServerRoot: "httpd"
Main DocumentRoot: "htdocs"
Main ErrorLog: "logs/error_log"
Mutex rewrite-map: using_defaults
Mutex default: dir="logs/" mechanism=default
PidFile: "logs/httpd.pid"
Define: DUMP_VHOSTS
Define: DUMP_RUN_CFG
User: name="#-1" id=4294967295 not_used
Group: name="#-1" id=4294967295 not_used

编辑:第二个命令:

Server version: Apache/2.4.3 (Unix)
Server built:   Dec 12 2012 11:40:57
Server's Module Magic Number: 20120211:6
Server loaded:  APR 1.4.6, APR-UTIL 1.5.1
Compiled using: APR 1.4.6, APR-UTIL 1.5.1
Architecture:   64-bit
Server MPM:     event
  threaded:     yes (fixed thread count)
    forked:     yes (variable process count)
Server compiled with....
 -D APR_HAS_SENDFILE
 -D APR_HAS_MMAP
 -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
 -D APR_USE_SYSVSEM_SERIALIZE
 -D APR_USE_PTHREAD_SERIALIZE
 -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
 -D APR_HAS_OTHER_CHILD
 -D AP_HAVE_RELIABLE_PIPED_LOGS
 -D DYNAMIC_MODULE_LIMIT=256
 -D HTTPD_ROOT="/httpd/Apache_2.4.3"
 -D SUEXEC_BIN="/httpd/Apache_2.4.3/bin/suexec"
 -D DEFAULT_PIDLOG="logs/httpd.pid"
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
 -D DEFAULT_ERRORLOG="logs/error_log"
 -D AP_TYPES_CONFIG_FILE="conf/mime.types"
 -D SERVER_CONFIG_FILE="conf/httpd.conf"

再次感谢。

答案1

假设您的include模块加载正确,并且您已经加载了mime依赖于include...的模块

您可能需要列出完整的目录,如下所示:

/var/www/html/test

而不是简单地test,我通常发现这+Includes是一个好主意而不是Includes。因此,工作配置应该如下所示:

LoadModule include_module    /logiciel/httpd/httpd/modules/mod_include.so
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
<Directory /var/www/html/test>
 # 
Options +Includes
</Directory>

相关内容