lamp 1.3 按照网上设置shtml方法没反应
1.3版本php5.6 + apache 2.4 lamp以下是我参照网上的设置apache的方法,但是一点反应都没有,军哥是不是我还有什么地方没做对啊???
还有说要开这个``我都开了```
LoadModule ssl_module modules/mod_ssl.so
Apache环境中启用shtml。
1. 确认加载include.so模块,将注释去掉:
LoadModule include_module modules/mod_include.so
此模块说明
This module provides a filter which will process files before they are sent to the client. The processing is controlled by specially formatted SGML comments, referred to as elements. These elements allow conditional text, the inclusion of other files or programs, as well as the setting and printing of environment variables.
此模块提供将要发送到客户端之前文件的过滤操作,由SGML来解释这一文件,然后这个文件简称元素,
查看httpd有没有正确加载这个模块,以方便记录可以处理的元素名单
如果没有这个模块就得重新编译apache了
这个模块的c源程序是mod_include.c
# apachectl -M|grep include
include_module (shared)
Syntax OK
2.在httpd.conf中的 AddType部分去掉这两段注释:
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
创建了这个类型的文件
3. Directory目录权限里面找到
Options Indexes FollowSymLinks
增加Includes修改为:
Options Indexes FollowSymLinks Includes
4. 重新启动httpd,测试:
SHTML test!
我知道什么问题了,因为我是新建vhost add 的时候把网站放到www下所以执行,所以需要修改vhost对应的文件添加上Options Indexes FollowSymLinks Includes IncludesNOEXEC
不知道军哥如何修改这些模板呢??现在默认是不添加这个进去的```有没办法在add的时候自动加这句进去```还有lnmp vhost add 的时候网站目录默认地址能否改成/home/www/域名 现在是/home/wwwroot/域名 其实哪个是对的呢???一个是root权限目录一个是www权限目录我有必要换成www下面去吗??? /usr/local/apache/conf/httpd.conf里
#LoadModule include_module modules/mod_include.so
及
#AddType text/html .shtml
#AddOutputFilter INCLUDES .shtml
把#去掉
Options FollowSymLinks 后加上Includes
所有要启用shtml的虚拟主机配置文件里的Options也要加上Includes
重启apache
页:
[1]