Run your admin panel website under port 9000 on the apache web server
Run your admin panel website under port 9000 on the Apache Windows Server http://codehelp.us/blog/run-website-port-apache-server #apache
It is very simple to run your admin panel website or your projects in different ports with Apache web server. The simple instruction to do so is given below.
Open your httpd.conf file and add the following lines of code at the end of the line:
Listen 9000 NameVirtualHost *:9000 <VirtualHost *:9000> DocumentRoot "C:/your_server_folder/your_project_folder" ServerName localhost </VirtualHost>
View On WordPress












