Đang cố gắng thiết lập máy chủ ảo apache trên macbook pro của tôi để phát triển.
Muốn thiết lập trang web để tôi có thể sử dụng định dạng url sau.
Điều này giải quyết theo index.html.en mặc định của apache, câu lệnh "Nó hoạt động!"
Tuy nhiên, khi tôi sử dụng http: // localhost / example , dường như tải tệp chỉ mục của ví dụ.
Có ý kiến gì không?
Đây là thiết lập của tôi
bản sao của tập tin / etc / hosts của tôi
127.0.0.1 localhost
127.0.0.1 example.local
255.255.255.255 broadcasthost
#::1 localhost
#fe60::1%lo0 localhost
bản sao của tập tin /etc/apache2/extra/httpd-vhosts.conf
NameVirtualHost *:80
<VirtualHost *:80>
ServerName example.local
ServerAlias example.local
DocumentRoot /Library/WebServer/Documents/example
#DirectoryIndex index.php
<Directory /Library/WebServer/Documents/example/>
Order Allow,Deny
Allow from All
Options Indexes FollowSymLinks
</Directory>
</VirtualHost>
Tôi đã loại bỏ vhost khác khỏi tệp để loại bỏ xung đột vhost.
Cảm ơn Dinesh.