安装 SSL 后断开与 apache2 的链接

安装 SSL 后断开与 apache2 的链接

我已经安装了 SSL 并设置了重定向,但现在有些链接断开了

我得到https://fraffel.techadmin/的示例不是https://fraffel.tech/admin。这就像系统将正斜杠移到末尾,在网站文件中它被定义为https://fraffel.tech/admin

非常感谢您的帮助。

答案1

根据例子,在 Apache 的文档中提供,您应该在指令中的目标 URL 末尾添加一个斜杠Redirect

<VirtualHost *:80>

    ServerName example.com

    # Redirect Requests to HTTPS
    Redirect permanent "/" "https://example.com/"

    # Other configuration directives for this VH ...

</VirtualHost>

不要忘记重新启动 Apache 并刷新浏览器的缓存以使效果生效。


我知道,因为我用我的我之前的回答,已经更正了:)

相关内容