Tôi đã đập đầu tôi chống lại tất cả các buổi tối và không thể nhìn thấy nơi tôi đang đi sai. Tôi muốn thiết lập một máy chủ, mysite.local, trên xampp và đã làm theo tất cả các hướng dẫn, nhưng tôi tiếp tục được chuyển hướng đến mysite.local/xampp.xampp - mysite.local chuyển hướng đến thư mục xampp
Bất kỳ ý tưởng nào tôi gặp sự cố ở đây? Các đường dẫn là chính xác, và tôi đã khởi động lại Apache :)
tôi sửa file host của tôi thêm:
127.0.0.1 mysite.local
tôi sửa thêm/httpd-vhosts.conf:
NameVirtualHost localhost:80
<VirtualHost localhost:80>
ServerName localhost
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs"
<Directory "/Applications/XAMPP/xamppfiles/htdocs">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
<VirtualHost localhost:80>
<Directory "/Applications/XAMPP/xamppfiles/htdocs/wd">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
</Directory>
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/wd"
ServerName mysite.local
</VirtualHost>