Dynamic Subdomain PHP
Okay, this might have been answered before but apparently up until now I still haven't found the answer.
You may notice there are some websites that may allow users to register to instantly get a subdomain of their own in the website.
For example, the domain is www.domain.com. If I register a new user as henson, I will get my own page in the website, ex: www.henson.domain.com (not sure if the www part is necessary) So if a user open www.henson.domain.com, it will actually open www.domain.com?owner=henson
Can I do this using only htaccess? Because I read somewhere that this also needs manual creation of subdomains in cpanel (which defeats the purpose of the website开发者_Python百科).
Oh, the website is coded with flat PHP, so no MVC frameworks. IF someone knows how to do this easily with frameworks (preferably CodeIgniter), be welcome to answer.
Thanks for the answer.
You cant in htaccess
, you must setup a wild card virtual host and rewrite it to the URL/directory you require. See http://blog.orite.com.au/web_development/2009-01-22/setting-up-wildcard-virtual-hosts-for-web-development-environment/ for more info
If you have CPANEL on your server, there is an XMLAPI which allows you to dynamically creates subdomains through PHP.
Yes, dynamically, not manually. I just spent the last 2 days on this (dynamic creation of everything from subdomains to email accnts to addon domains and sql dbs, users....everything), and cpanel API handles it all, cleanly. So take a while and figure it out.
Download the XMLAPI at the first link on this page: http://forums.cpanel.net/f42/xml-api-php-class-version-1-0-a-136449.html. The file xmlapi.php is the only one you need on your server.
That forum page is a nightmarish graveyard of half working examples written by very advanced and/or very hacky coders with no clear starting point.
Here is a basic script in PHP to add subdomains, replace the caps w your personal values. This took me quite a while to get right. Best of luck! Next steps, hit that forum link and read all the other API1 and API2 functions!
include("PATH_TO_THE_DOWNLOADED_xmlapi.php");
$ip = "YOUR_IP_ADDRESS";
$root_pass = "ROOT_CPANEL_PASSWORD!";
$xmlapi = new xmlapi($ip);
$xmlapi->password_auth("root",$root_pass);
$account = "YOUR_CPANEL_MAIN_ACCNT_NAME";
print $xmlapi->api2_query($account, 'SubDomain','addsubdomain', array(dir=>"public_html/NAME_OF_SUBDOMAIN", domain=>"NAME_OF_SUBDOMAIN", rootdomain=>"MAIN_DOMAIN.com") );
You can parse $_SERVER['SERVER_NAME']
to determine which subdomain is used. The www
part is actually never necessary. This is simply a subdomain that has no meaning. Most of the time it is simply mapped to the main domain. Example:
if (preg_match('/^(www\.)?(.+)\.your-domain.com$/', $_SERVER['SERVER_NAME'], $matches) && $matches[2] != 'www') {
$subdomain = $matches[2];
// your logic goes here
}
This can be achieved in .htaccess
provided your server is configured to allow wildcard subdomains. I achieved that in JustHost by creating a subomain manually named *
and specifying a folder called subdomains as the document root for wildcard subdomains. Add this to a .htaccess
file in your subdomains folder:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.website\.com$
RewriteCond %{HTTP_HOST} ^(\w+)\.website\.com$
RewriteCond %{REQUEST_URI}:%1 !^/([^/]+)/([^:]*):\1
RewriteRule ^(.*)$ /%1/$1 [QSA]
Finally, create a folder for your subdomain and place the subdomains files.
精彩评论