为通配符域定义https

时间:2016-06-24 19:11:23

标签: https server

我有一个用户数据库,我正在动态创建页面。所以我正在验证用户是否存在于数据库中。我需要一个页面作为https,但我不明白如何定义它。

我有以下内容:

// define subdomain here
$server = $_SERVER['HTTP_HOST'];
$sub = str_replace('the14dayreset.com', '', $server);
$sub = preg_replace('%^www\.%msi', '', $sub);
$user = str_replace('.', '', $sub);

if(empty($user)) {
  header("Location: https://14dayreset.the14dayreset.com/order-now1.php");
  exit;
}

如果我使用$ _SERVER ['HTTPS'],那么我将失去子域名。

这样做的最佳方式是什么?

提前致谢 小馅饼

0 个答案:

没有答案