I develop a site and manage it two. one of them is me, and the other is a designer, accessible from different computers on a local network.
Conf: php, apache, windows xp, mysql.
Document root: d: \ www \ xampp \ htdocs. all projects are under these subfolders.
I set up a virtual host so that I don't get access to all projects like http: // localhost / foldername , but just like http: // foldername .
But for a designer who is on a different system, he must get access, for example http: // computername / foldername
For example, let me work on a project payroll. I access this as http: // payroll , but my designer will access this as http: // computername / payroll .
What I want to do is that I want the constructor to access the same way I do. i.e. http: // payroll .
so in the designerβs system, when the server name is the payroll, I want it to be directed to my machine and then to the project folder. therefore, if it gives http: // payroll , then the application on my system should work for it.
I installed the hosts file on the designers system to point to my machine. therefore, this work is done, and when it gives a salary, http: // localhost appears.
What should I do, can a designer access my project, for example http: // payroll , to create my own system?
apache virtualhost
Jayapal chandran
source share