html 在xampp - localhost站点上创建虚拟主机到某个域名

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在xampp - localhost站点上创建虚拟主机到某个域名相关的知识,希望对你有一定的参考价值。

/* 	Virtual Hosts give you the ability to "host" more than one Web site and domain on your computer. 
	helpful link: http://sawmac.com/xampp/virtualhosts/
*/

to convert "localhost/sitenamefolder into newsitename.com

================= add following code to "httpd-vhosts.txt" ======================
NameVirtualHost *:80 
<VirtualHost *:80>
   DocumentRoot "E:\xampp\htdocs"
   ServerName localhost
 </VirtualHost>
 <VirtualHost *:80>
   DocumentRoot "E:\xampp\htdocs\sitenamefolder"
   ServerName newsitename.com
 <Directory "E:\xampp\htdocs\sitenamefolder">
   Order allow,deny
   Allow from all
 </Directory>
</VirtualHost>

==================== add following code "hosts.php" =============================
127.0.0.1			newsitename.com

以上是关于html 在xampp - localhost站点上创建虚拟主机到某个域名的主要内容,如果未能解决你的问题,请参考以下文章

使用 htdocs 下的子目录在 XAMPP/apache 2.2 中的 localhost 上打开 HTML 文件 [重复]

CSS 样式表更改未显示在 localhost (XAMPP)

在 localhost XAMPP PHP 中接收邮件

使用 XAMPP 通过我的 Localhost 正确查看 PHP

PHP Header Location 在 localhost xampp 中不起作用?

xampp下载和使用