CakePHP 和 SSL
我刚刚在使用 CakePHP 的网站上安装了 SSL 证书,现在该网站不再从 webroot 加载文件(图像、css 文件)。有什么想法吗?我认为 SSL 安装影响了 mod_rewrite 或类似的东西。
I just installed a SSL certificate on my website that uses CakePHP and now the site doesn't load anymore files from webroot (images, css files). Any ideas? I think SSL installation affected mod_rewrite, or something like this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚遇到这个问题。检查您的 apache2 站点配置。确保:
AllowOverride all
设置为允许在 ssl 下覆盖 .htaccess。这是我的配置片段(在 ubuntu 上)。
I just ran into this problem. Check your sites configuration for apache2. Make sure:
AllowOverride all
is set to allow .htaccess overrides under ssl. Here is my snippet of my config (on ubuntu).