<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Designer Blog &#187; development</title>
	<atom:link href="http://blog.smriyaz.com/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.smriyaz.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 21 Aug 2011 08:16:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>How to create virtual hosts in Windows (wamp) web server?</title>
		<link>http://blog.smriyaz.com/how-to-create-virtual-hosts-in-windows-wamp-server/</link>
		<comments>http://blog.smriyaz.com/how-to-create-virtual-hosts-in-windows-wamp-server/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 13:44:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[server-related]]></category>

		<guid isPermaLink="false">http://blog.smriyaz.com/?p=76</guid>
		<description><![CDATA[<h2>Intro</h2>
Creating virtual hosts is the better way to simulate the hosting server in your own development server. Simply your localhost folders will act as domains where you can easily test several sites in the local server as http://mysite.local  or http://mytest.mysite. To create this kind of virtual hosts or virtual domains in your Apache server on Windows  using WAMP server is just a matter of editing few files. Find the walk-through below.

<img class="alignnone size-full wp-image-92" title="virtual-hosts" src="http://blog.smriyaz.com/wp-content/uploads/2010/02/virtual-hosts.jpg" alt="virtual-hosts" width="635" height="228" />
<h2>Step 1 - Setting up the 'host' file</h2>
<ol>
	<li>Find the ‘host’ file in  ‘C:\WINDOWS\system32\drivers\etc’ folder (or where you installed windows)</li>
	<li>Open it with Notepade or any text editor.</li>
	<li>You will see following lines</li>
<pre># Copyright (c) 1993-2009 Microsoft Corp.
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
# For example:
#      102.54.94.97     rhino.acme.com         # source server
#       38.25.63.10     x.acme.com              # x client host
# localhost name resolution is handled within DNS itself.
<strong>127.0.0.1       localhost</strong> <strong>
::1             localhost
</strong></pre>
	<li>Add the desired domain names in the end of the text (after the default localhost settings indicated above) it can be anything with or without extension (see the examples below)</li>
</ol>]]></description>
		<wfw:commentRss>http://blog.smriyaz.com/how-to-create-virtual-hosts-in-windows-wamp-server/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>




