1

Я пытаюсь создать виртуальный хост для разработки PHP, поэтому я не захожу на http://localhost/new_website , а на new_website.dev и получаю сайт.

Я создал каталог в папке /Sites и отредактировал файл /etc/apache2/extra/httpd-vhosts.conf файл /private/etc/hosts .

Содержимое моего файла vhosts:

#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at 
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# 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 all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#

<VirtualHost *:80>
    DocumentRoot "/Users/Rob/Sites"
    ServerName localhost
</VirtualHost>


<VirtualHost *:80>
    DocumentRoot "/Users/Rob/Sites/new_website"
    ServerName new_website.dev
</VirtualHost>

И содержимое моего файла hosts:

##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1   localhost
255.255.255.255 broadcasthost
::1             localhost 
fe80::1%lo0 localhost

127.0.0.1 new_website.dev

И из того, что я нашел в Интернете, это должно сработать , но почему-то я не получаю index.php из каталога new_website , но я получаю index.php из каталога Sites . Так что корень сервера так сказать. Что я делаю неправильно?

0