Jump to content

Need to simulate webdomains


Onno

Recommended Posts

Apache is not my strongest side. But I\'m learning

Any way I need for a PHP script to simulate url adresses on my Localhost.

Now i acces a webpage on my locahost by 127.0.0.1

but 127.0.0.1 should become www.onno.org for example

and www.tom.org etc...

 

How do I put this in my httpd.conf script. Remember this is on my local host without any bind

 

Using Red Hat 9.0

And apache 2.x

Link to comment
https://forums.phpfreaks.com/topic/1268-need-to-simulate-webdomains/
Share on other sites

  • 2 weeks later...

First assign the names in your hosts file. On my BSD box, it\'s /etc/hosts ... I can only assume that it\'s in a similar location in RH.

 

Something like this should do:

127.0.0.1    www.onno.org

127.0.0.1       www.tom.org

 

Test, and make sure that the names resolve locally. In BSD, changing /etc/resolv.conf to instruct the resolver to check the hosts file before the nameserver is simply a matter of which line comes first. Like I said, not sure about RH.....

 

Secondly, you need to enable Name-based virtual hosting in httpd.conf. Here\'s an example:

#

# Use name-based virtual hosting.

#

NameVirtualHost *:80



# VirtualHost example:

# Almost any Apache directive may go into a VirtualHost container.

# The first VirtualHost section is used for requests without a known

# server name.

   

<VirtualHost *>

   ServerName www.onno.org

   DocumentRoot /www/onno

   ServerAdmin me@localhost

</VirtualHost>

Restart apache, voila!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.