我有XAMPP,我可以在路径
下看到文件mod_expires.so... XAMPP \阿帕奇\模块\ mod_expires.so
但是,我认为该模块没有加载有两个原因:
首先:调用phpinfo()
时未列出mod_expires第二,我是否将缓存时间线添加到.htaccess文件中我得到500服务器错误
(.htaccess中的缓存代码示例
<IfModule mod_expires.c>
# Activate mod_expires for this directory
ExpiresActive on
#HTML documents are good for a week from the time they were changed
ExpiresDefault M604800
</IfModule>
两个问题然后:
是否存在mod_expires.so文件,表明该模块已安装?
如果是,我该如何启用或激活?
如果不是,我如何在XAMPP中安装和启用?
谢谢,
答案 0 :(得分:18)
要加载expires模块,假设它是XAMPP包的一部分,我们需要从apache的配置文件中取消注释LoadModule。
首先检查XAMPP包是否有模块:
转到C:\ XAMPP \ apache \ module并查找文件mod_expires.so
如果您有此文件,请转到文件C:\ XAMPP \ apache \ conf \ httpd.conf并搜索“mod_expires.so”
你会看到
#LoadModule expires_module modules/mod_expires.so
取消评论此行以便
LoadModule expires_module modules/mod_expires.so
重置服务器