【发布时间】:2020-09-11 00:59:50
【问题描述】:
在我的 macos 10.15.4 上的 httpd-vhost.conf 中,
<VirtualHost *:80>
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "/Applications/XAMPP/xamppfiles/htdocs/theb/"
ServerName theb.localhost
ServerAlias www.theb.localhost
#DirectoryIndex index.html
<Directory "/Applications/XAMPP/xamppfiles/htdocs/theb">
Require all granted
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride none
</Directory>
ErrorLog "logs/theb.local-error_log"
</VirtualHost>
我还在 httpd.conf 中包含了虚拟主机
Include etc/extra/httpd-vhosts.conf
然后在主机文件中,我有
127.0.0.1 localhost
127.0.0.1 www.theb.localhost
我现在面对这些配置的问题是,每当我在浏览器中浏览网站时,
http://www.theb.localhost,然后我将被重定向到http://www.theb.localhost/dashboard(这是 xampp 默认项目文件夹)。我错过了什么吗??
【问题讨论】: