Heim > Backend-Entwicklung > PHP-Tutorial > XAMPP配置虚拟主机具体步骤

XAMPP配置虚拟主机具体步骤

WBOY
Freigeben: 2016-07-29 09:08:10
Original
1590 Leute haben es durchsucht

1.安装XAMPP安装包到D盘,安装完成后,退出XAMPP集成环境,进入下一步,配置虚拟主机;首先在XAMPP/htdocs目录下新建目录magento2和test文件夹(此文件夹为你的项目全部内容)。

PS.在创建多个虚拟主机时,也需要新建一个文件夹包含你的项目全部内容如magento2和test,如果还需要创建则再创建相应文件夹。

2.找到你的XAMPP安装目录,依次打开以下目录:apache/conf/extra目录找到httpd-vhosts.conf文件,用记事本打开。

3.打开http-vhosts.conf后,在最下面添加如下代码:

<code><virtualhost>
 ServerName www.magento2.com
 DocumentRoot "D:/XAMPP/htdocs/magento2"
<directory> 
 Options FollowSymLinks IncludesNOEXEC Indexes
 DirectoryIndex index.html index.htm index.php
 AllowOverride all 
 Order Deny,Allow 
 Allow from all 
 Require all granted
</directory>
</virtualhost>

<virtualhost>
 ServerName www.test.com
 DocumentRoot "D:/XAMPP/htdocs/test"
<directory> 
 Options FollowSymLinks IncludesNOEXEC Indexes
 DirectoryIndex index.html index.htm index.php
 AllowOverride all 
 Order Deny,Allow 
 Allow from all   
 Require all granted
</directory>
</virtualhost>
</code>
Nach dem Login kopieren

4.此外,需要配置C盘host文件,依次找到下面的目录:C盘/windows/system32/drivers/etc目录,找到hosts文件,用记事本打开,添加127.0.0.1 www.magento2.com 保存,如:

<code>127.0.0.1   www.magento2.com
127.0.0.1   www.test.com</code>
Nach dem Login kopieren

5.配置虚拟主机完成,重启XAMPP集成环境即可。

以上就介绍了XAMPP配置虚拟主机具体步骤,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage