目前,我有XAMPP设置,在浏览器中键入127.0.0.1会将我重定向到htdocs中找到的主页。
我希望能够输入" devtest"并将其作为127.0.0.1的别名。
我到目前为止所做的是修改:C:\xampp\apache\conf\extra\httpd.vhosts.conf
我在其中添加了一个看起来像的条目:
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host2.example.com
DocumentRoot C:\xampp\htdocs\Workspace\MyProject
ServerName devtest
ErrorLog C:\xampp\htdocs\Workspace\MyProject\MyProject-error_log
CustomLog C:\xampp\htdocs\Workspace\MyProject\MyProject-access_log common
</VirtualHost>
我还缺少另一个步骤吗?
答案 0 :(得分:1)
使用此选项,并确保在apache中启用vhosts配置文件。
<VirtualHost *:80>
DocumentRoot "C:\xampp\htdocs\Workspace\MyProject"
ServerName devtest.local
<Directory "C:\xampp\htdocs\Workspace\MyProject">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
答案 1 :(得分:1)