Hi guys, I'm trying to make a service for users where they can chose a username and that instantly gives them a subdomain url.
e.g. johny.peoplelist.com
At the same time, I have physical folder with static files of user, e.g
public_html/users/johny/
It has 5 .html pages like index.html, aboutme.html, photos.html etc
What is the best way to make it work with minimal resources from server side. Pages are static html so would like them to stay this way and avoid any php inquiries if possible, however, not sure maybe it is impossible without php;
If any ideas, please let me know.
Sandy