服务器端包含 (SSI) 在 https (ssl) 上停止工作
我的服务器端包含在通过 http 访问网站时工作正常,但是当尝试安全地访问该网站时(这一切都设置得很好),它们只是不包含在内。
我在 apache2/sites-enabled 目录中的一个文件中使用以下代码:
<Directory /var/www/html>
Options +Includes
AddType text/html .htm
AddOutputFilter INCLUDES .htm
</Directory>
关于在哪里查找有什么想法吗?
My server side includes work fine when accessing the website through http, but when trying to access the site securely (which is all set up sweet) they just don't get included.
I'm using the following code in the one file inside my apache2/sites-enabled directory:
<Directory /var/www/html>
Options +Includes
AddType text/html .htm
AddOutputFilter INCLUDES .htm
</Directory>
Any ideas about where to look?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
知道了。我只将上面的代码放入普通端口的 virtualhost 部分,而不是 ssl 端口。
Got it. I had only put the above code into the virtualhost section for the ordinary port, not the ssl port.