johney
johney

Reputation: 119

How to dynamically create subdomains

I want to dynamically create new sub domains on my website. i mean if you have example.com then you dynamically create sub.example.com .

i looked on google and there was nothing really good. i downloaded some scripts but they were all not working. my website is based on php so please if there is anyway i can do it in php tell me, and also if it can be possible with python then that is awesome!.

Upvotes: 9

Views: 13794

Answers (2)

Mike Thomsen
Mike Thomsen

Reputation: 37506

You can't do this unless you have permission to alter the DNS server for your domain.

Upvotes: -3

JohnP
JohnP

Reputation: 50009

You need to setup a wildcard subdomain. Basically, anything.mysite.com will resolve to mysite.com. At that point it's up to your code to kick in and serve up the proper content depending on what subdomain the user is looking at.

http://www.google.lk/search?q=wildcard+subdomain

Upvotes: 22

Related Questions