新安装的FMP 14服务器,具有有效的SSL证书。
我想知道如何强制或重定向所有网络流量,以便在我的服务器上永久使用https。
提前致谢!
丹
答案 0 :(得分:0)
我想我已经弄明白了。
将以下内容添加到/Library/FileMaker Server/HTTPServer/conf/httpd.conf
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule ^(.*) https://%{HTTP_HOST}/$1
重启服务器