Ubuntu自带的apache开启ssi支持shtml
默认情况下:模块是一件存在的,但是apache没有加载模块,所以需要自己创建一个软连接
步骤:
ln -s /etc/apache2/mods-available/include.load /etc/apache2/mods-enabled
现在apache就可以加载模块了
然后在需要开始ssi的sites-available/filename 的配置文件中增加相应的代码。
例如我的配置:
vi /etc/apache2/sites-available/blogguy_cn
增加以下两行:
AddType text/html .shtml .html .htm
AddOutputFilter INCLUDES .shtml .html .htm
同时注意:
Options Indexes FollowSymLinks MultiViews +Includes 一行 +Includes一定要有,默认是有的。
配置完的配置文件大致是:
<VirtualHost *:80>
ServerAdmin wayswang@gmail.com
DocumentRoot /var/www/blogguy.cn
ServerName blogguy.cn
ServerAlias www.blogguy.cn
<Directory /var/www/blogguy.cn>
Options Indexes FollowSymLinks MultiViews Includes
AllowOverride None
Order allow,deny
allow from all
AddType text/html .shtml .html .htm
AddOutputFilter INCLUDES .shtml .html .htm
</Directory>
ErrorLog /var/log/apache2/blogguy_cn_error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/blogguy_cn_access.log combined
</VirtualHost>
然后重启apache
service apache2 restart
可以了!
关键字:Ubuntu apache 开启 ssi 支持 shtml
新文章:
- CentOS7下图形配置网络的方法
- CentOS 7如何添加删除用户
- 如何解决centos7双系统后丢失windows启动项
- CentOS单网卡如何批量添加不同IP段
- CentOS下iconv命令的介绍
- Centos7 SSH密钥登陆及密码密钥双重验证详解
- CentOS 7.1添加删除用户的方法
- CentOS查找/扫描局域网打印机IP讲解
- CentOS7使用hostapd实现无AP模式的详解
- su命令不能切换root的解决方法
- 解决VMware下CentOS7网络重启出错
- 解决Centos7双系统后丢失windows启动项
- CentOS下如何避免文件覆盖
- CentOS7和CentOS6系统有什么不同呢
- Centos 6.6默认iptable规则详解