2015-12-09 04:12
Apache+nginx支持shtml实现include文件引入的配置方法
一般的服务器是默认关闭shtml功能的,这个时候我们就要修改相应的配置文件(Apache/nginx),才能启用shtml,开启include功能。
首先,能够寻找这个问题的人,应该都多少了解shtml,对于概念上就不多解释了。
Apache的配置文件是httpd.conf,一般默认位置是/etc/httpd/conf/httpd.conf
nginx的配置文件是nginx.conf,一般默认位置是/etc/nginx/nginx.conf
下面是解决方法。
Apache支持shtml的配置方法:
打开httpd.conf配置文件
分别搜索下面两个语句:
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
把代码前的“#”删除即可。
Directory目录权限里面找到:Options Indexes FollowSymLinks(也可以搜索Options,因为在某些文件配置上写的不一样。)
修改为:Options Indexes FollowSymLinks Includes
重启Apache服务器,测试是否成功启用。
Nginx支持shtml的配置方法:
在nginx.conf配置文件的http标签内下面,添加:
ssi on;
ssi_silent_errors on;
ssi_types text/shtml;
Apache+Nginx只要两个对应的配置文件都修改即可。