我正在构建一个应用程序,该应用程序使用位于数据库中的用户子域和自定义域名,因此如果请求来自另一个域,我将从数据库中检查该自定义 URL 是否确实存在或请求来自一个子域,我会检查它是否存在。如果是我做我的事。
考虑一下我正在寻找的一个简单示例:
if(is_user_request())
{
$url = get_url();
// assuming that get_url() magically decides whether to output ..
// a custom domain (http://domain.tld)
// or a subdomain's first part (eg. "this".domain.tld)
}
else
{
// otherwise it's not a sub domain nor a custom domain,
// so we're dealing with our own main site.
}
现在在你继续假设因为我有 0 代表之前,我在这里要求“teh 代码”。我有一种完全可行的方法,如下所示:
// hosts
$hosts = explode('.', $_SERVER['HTTP_HOST']);
// if there is a subdomain and that's under our $sitename
if(!empty($hosts[1]) AND $hosts[1] === Config::get('domain_mid_name'))
{
$url = $hosts[0];
$url_custom = false;
}
// if there is no subdomain, but the domain is our $sitename
elseif(!empty($hosts[0]) AND $hosts[0] === Config::get('domain_mid_name') AND !empty($hosts[1]) AND $hosts[1] !== Config::get('domain_mid_name'))
{
$url = false;
$url_custom = false;
}
// otherwise it's most likely that the request
// came from a entirely different domain name.
// which means it's probably $custom_site
else
{
$url = false;
$url_custom = implode('.', $hosts);
}
if($url)
{
return $url;
}
if($url_custom)
{
return $url_custom;
}
但是,我确信有更好的方法可以做到这一点。因为首先,HTTP_HOST 不包含'http://',所以我需要手动添加它,我很确定这整个 if,否则事情只是一个矫枉过正。所以,比我聪明的人,请赐教。
哦,不……我没有预定义的子域。我设置了一个简单的通配符 *.domain.tld,因此所有子域都转到主脚本。我之所以这么说,是因为在我寻找解决方案的过程中,我发现了许多建议手动创建子域的答案,这甚至与我所要求的内容无关,所以让我们跳过这个主题。