I want my php/apache site to accept requests to a folder that does not exist - when such a request comes in some php code should kick in to create the folder and copy some files into it.
The site is a rudimentary chat site, the client wants users to specify a URL like this:
http://www.mysite.net/custom-chat
This would be like creating a channel. He does not want to do something I know how to do like
http://www.mysite.com/?room=custom-chat
Is this possible?