Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 965643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:01:58+00:00 2026-05-16T02:01:58+00:00

I’m trying to extract the subdomain from the HTTP_HOST value. However I’ve stumbled into

  • 0

I’m trying to extract the subdomain from the HTTP_HOST value. However I’ve stumbled into a problem where if the subdomain has more than one dot in it it fails to match properly. Given that this is a script to run on multiple different domains and it could have an unlimited amount of dots, and the tld could be either 1 or 2 parts (and any length) – is there a practical way of correctly matching the subdomain, domain and tld in all situations?

So for example take the following HTTP_HOST values and what is required to be matched.

  • http://www.buggedcom.co.uk
    • Subdomain: www
    • Domain: buggedcom.co.uk
    • TLD: co.uk
  • http://www.buggedcom.com
    • Subdomain: www
    • Domain: buggedcom.com
    • TLD: com
  • test.buggedcom.co.uk
    • Subdomain: test
    • Domain: buggedcom.co.uk
    • TLD: co.uk
  • test.buggedcom.com
    • Subdomain: test
    • Domain: buggedcom.com
    • TLD: com
  • multi.sub.test.buggedcom.co.uk
    • Subdomain: multi.sub.test
    • Domain: buggedcom.co.uk
    • TLD: co.uk
  • multi.sub.test.buggedcom.com
    • Subdomain: multi.sub.test
    • Domain: buggedcom.com
    • TLD: com

I am presuming that the only way to accomplish this would be to load a list of tlds, which allow possible I don’t really want to do as this is at the start of a script and should really require heavy lifting like that.

Below is the current code.

define('HOST', isset($_SERVER['HTTP_HOST']) === true ? $_SERVER['HTTP_HOST'] : (isset($_SERVER['SERVER_ADDR']) === true ? $_SERVER['SERVER_ADDR'] : $_SERVER['SERVER_NAME']));
$domain_parts = explode('.', HOST); 
$domain_parts_count = count($domain_parts);
if($domain_parts_count > 1)
{   
    $sub_parts = array_splice($domain_parts, 0, $domain_parts_count-3);
    define('SUBDOMAIN', implode('.', $sub_parts));
    unset($sub_parts);
}
else
{
    define('SUBDOMAIN', '');
}
define('DOMAIN', implode('.', $domain_parts));
var_dump($domain_parts, SUBDOMAIN, DOMAIN);exit;

Just thought could mod_rewrite append the subdomain as a get param?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T02:01:59+00:00Added an answer on May 16, 2026 at 2:01 am

    First of all I would explode(and use the first index in the array) on a slash just to be sure that the string ends with the TLD.

    Then I would cut it with a preg_replace.
    This rexexp matches the domain+tld regardless of tld type. Beware however this would give a problem with 2&3 letter domains. But it should give a push to the right direction….

    [a-zA-Z0-9]+\.(([a-zA-Z]{2,6})|([a-zA-Z]{2,3}\.[a-zA-Z]{2,3}))$
    

    Edit: as pointed out: .museum is also possible, so edited the first pattern in the TLD part….

    And of course TLD’s like .UK could behave differently then co.uk
    ugh.. it’s not that easy…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.