SQL Server2008的安装,SQLServer2008的安装......
2023-02-22 277 安装
本地开发的项目多了之后,有很多的文件将,为了方便测试,不想再每次都是经过localhost去众多的目录中选择,而是通过自定义的www.xxx.com网址去测试,既方便,又容易记忆。下面说一下具体实现过程:
首先找到C:WindowsSystem32driversetchosts文件移动到桌面,在文件中最后添加:
127.0.0.1 www.atest.com
然后将文件覆盖掉原来的C:WindowsSystem32driversetchosts文件。
将apache的配置文件http.conf中的:
#Include conf/extra/httpd-vhosts.conf
前面的#,删除,是为了此行代码起作用。
对应第二步找到conf/extra/httpd-vhosts.conf,添加一下代码:
VirtualHost *:80>
ServerAdmin localhost@qq.com
DocumentRoot "E:/www/dangbingren"
ServerName atest.com
ServerAlias www.atest.com
ErrorLog "logs/ www.atest.com-error.log"
CustomLog "logs/ www.atest.com-access.log" common
/VirtualHost>
保存文件后,重启apache服务;
此时即可访问www.atest.com。
但是此时默认的localhost访问不了了,解决方式,在第三步的代码后,添加:
VirtualHost *:80>
ServerAdmin localhost@qq.com
DocumentRoot "E:/www/"
ServerName localhost
ErrorLog "logs/ localhost-error.log"
CustomLog "logs/ localhost-access.log" common
/VirtualHost>
此时,www.atest.com和localhost都能够正常运行了。
以上方法由办公区教程网编辑摘抄自百度经验可供大家参考!
相关文章