Question about making a website

nisdee

Regular Member
Joined
Nov 16, 2014
Messages
381
Reaction score
151
Hello,

I've only ever done landing pages which are not that advanced

I'm interested how to make a website which has 'X' number of subdomains and each page looks the same but it has different content on it?

I suppose this is somehow done with php and databases where content is stored, but I can't seem to find it on google

Can someone explain a bit or share a tutorial with me?

Thank you :)
 
that needs to have some sort of server side conditions to render content based on subdomains.
 
that needs to have some sort of server side conditions to render content based on subdomains.

Yeah, that's basically my question reversed mate

Still looking for answers
 
Create a folder for each sub domain and then point the document root for each subdomain to a folder. Then for each webpage you can include common templates, libraries, files, and folders so all of your sub domains use the same files. It’s really basic stuff that can be applied to any server side language.
 
Create a folder for each sub domain and then point the document root for each subdomain to a folder. Then for each webpage you can include common templates, libraries, files, and folders so all of your sub domains use the same files. It’s really basic stuff that can be applied to any server side language.

Yes, I have been researching for hours now and discovered ASP.NET and it covers all the things I wanna do

Thank you :)
 
check for answer in stackoverflow.. you will get an easy and best solution
 
Back
Top