Cheating Subdomains - PHP
My host doesn't support subdomains. So I wrote this.
if the url is http://maxalbert.com it creates frames to hide http://atomicpixels.com/maxalbert/
if the url is http://lpp.maxalbert.com it creates frames to hide http://lpp.gliebster.com/
else it just goes to http://atomicpixels.com/
Anyway, it's here for all to use.
<?
if (eregi("lpp.maxalbert.com",$HTTP_HOST)) {
?>
<html>
<head>
<title>Liquid Plastic Productions</title>
</head>
<frameset rows="*,100%" >
<frame name=blanktop src="http://atomicpixels.com/maxalbert/blanktop.html" scrolling=no noresize marginheight=0 frameborder=0>
<frame name=maincontent src="http://lpp.gliebster.com" scrolling=auto noresize marginheight=0 frameborder=0>
<noframes>Sorry, this site requires frames.</noframes>
</frameset>
</html>
<?
}
elseif (eregi("maxalbert.com",$HTTP_HOST)) {
?>
<html>
<head>
<title>Max Albert .Com</title>
</head>
<frameset rows="*,100%" >
<frame name=blanktop src="http://atomicpixels.com/maxalbert/blanktop.html" scrolling=no noresize marginheight=0 frameborder=0>
<frame name=maincontent src="http://atomicpixels.com/maxalbert/home.shtml" scrolling=auto noresize marginheight=0 frameborder=0>
<noframes>Sorry, this site requires frames.</noframes>
</frameset>
</html>
<?
}
else{
header("Location: http://atomicpixels.com/home.shtml");
}
?>
Mark Hensler
If there is no answer on Google, then there is no question.
Gliebster posted this at 18:15 — 23rd December 2000.
They have: 21 posts
Joined: Sep 2000
Thanks, I was going to ask you for that little script.
You should also mention that wildcarding needs to be on so that *.yourdomain.com points to your domain's IP. Not all hosts are setup like that but if you manage your own DNS it should be no problem.
Steve Gliebe
http://digitalart.org
http://dreamdolphin.com
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.