•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Linux Servers and Apache section within the Tech Talk category of DaniWeb, a massive community of 397,685 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,480 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Linux Servers and Apache advertiser:
Views: 577 | Replies: 2
![]() |
•
•
Join Date: Aug 2007
Posts: 154
Reputation:
Rep Power: 0
Solved Threads: 0
Hi.
I am using WAMP which including the following:
PHP 5...
MySQL 5...
Apache 2...
I want to create IP-Based VirtualHost, therefore I did the following:
1. add "Microsoft Loopback Adapter", and I assign two IP on that.
2. Create two folders named (host1, host2) in my root directory which is www. and for sure inside those two folders I place some php files.
3. and I add the following in my httpd.conf
4. and then I added the following in the hosts file
5. open the browser and type the following address
I get the following error:
I don't know what to do? anyone please guide me
P.S:
I am working on my own computer, it means I am not in any Network or on the Internet, so I did not use the real computer adapter, because it is unplugged, and therefore I add Microsoft Loopback Adapter
I am using WAMP which including the following:
PHP 5...
MySQL 5...
Apache 2...
I want to create IP-Based VirtualHost, therefore I did the following:
1. add "Microsoft Loopback Adapter", and I assign two IP on that.
2. Create two folders named (host1, host2) in my root directory which is www. and for sure inside those two folders I place some php files.
3. and I add the following in my httpd.conf
#********************************* VIRTUAL HOSTING BY IP Listen 127.0.0.1:8081 Listen 192.168.1.1:8081 Listen 192.168.1.2:8081 NameVirtualHost 192.168.1.1:8081 NameVirtualHost 192.168.1.2:8081 <VirtualHost 192.168.1.1:8081> DocumentRoot "C:\wamp\www\host1" ServerName host1.com </VirtualHost> <VirtualHost 192.168.1.2:8081> DocumentRoot "C:\wamp\www\host2" ServerName host2.com </VirtualHost> #********************************* VIRTUAL HOSTING BY IP
4. and then I added the following in the hosts file
127.0.0.1 localhost 192.168.1.1 host1.com 192.168.1.2 host2.com
5. open the browser and type the following address
http://host1.com:8081/
Forbidden You don't have permission to access / on this server.
I don't know what to do? anyone please guide me
P.S:
I am working on my own computer, it means I am not in any Network or on the Internet, so I did not use the real computer adapter, because it is unplugged, and therefore I add Microsoft Loopback Adapter
•
•
Join Date: Jan 2008
Posts: 28
Reputation:
Rep Power: 1
Solved Threads: 3
Throw this inside each individual virtual host:
**** Between these lines***
AllowOverride All
Order allow,deny
Allow from all
****^^^*****
Also, if your going to want www.site.com you should alias it or make site.com an alias.
info from config file:
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
**** Between these lines***
AllowOverride All
Order allow,deny
Allow from all
****^^^*****
Also, if your going to want www.site.com you should alias it or make site.com an alias.
info from config file:
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb Linux Servers and Apache Marketplace
Other Threads in the Linux Servers and Apache Forum
- Previous Thread: 2 servers on one machine?
- Next Thread: mod_rewrite to hide subdirectory


Linear Mode