Below you will find pages that utilize the taxonomy term “shtml”
December 3, 2008
配置apache服务器支持shtml
"服务器采用shtml速度会比html慢,比php快。\nshtml的特点就是能够进行页面包含,能够局部更新页面包含部分。广泛采用可以很容易解决网页中的广告问题,不需要更新全面静态页面。而只需更新一个包含页面即可。\napache下配置服务器支持shtml\n打开文件:httpd.conf\n去掉前面的 #LoadModule include_module modules/mod_include.so\nOptions Indexes FollowSymLinks Includes\nAllowOverride Options FileInfo Order allow,deny Allow from all\n找到下面两句,去掉前面的#\nAddType text/html .shtml AddOutputFilter INCLUDES .shtml\n重启apache即可。\n建立页面:\n测试\nfile为相对于当前文档的路径。\nvirtual为相对于虚拟目录的路径。 如果需要让所有的html文件支持shtml.只需要修改上面一句。\nAddOutputFilter INCLUDES .html"