<?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>The Developer Day &#187; xampp</title>
	<atom:link href="http://www.thedeveloperday.com/tag/xampp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thedeveloperday.com</link>
	<description>Staying Curious</description>
	<lastBuildDate>Fri, 03 Feb 2012 12:03:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Adding a virtual host on apache windows xampp</title>
		<link>http://www.thedeveloperday.com/adding-a-virtual-host-on-apache-windows-xampp/</link>
		<comments>http://www.thedeveloperday.com/adding-a-virtual-host-on-apache-windows-xampp/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 14:53:47 +0000</pubDate>
		<dc:creator>Žilvinas Šaltys</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://www.thedeveloperday.com/?p=122</guid>
		<description><![CDATA[Setting up virtual host on windows using apache and possibly XAMPP is easy but may cause some trouble to the inexperienced. To setup a virtual host follow these steps: 1. Locate your vhosts file. On my PC it&#8217;s: D:\apache\conf\extra\httpd-vhosts.conf 2. Uncomment the following line: NameVirtualHost *:80 3. Add your virtual host definition:      DocumentRoot "D:\www\myproject\" [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up virtual host on windows using apache and possibly <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is easy but may cause some trouble to the inexperienced. To setup a virtual host follow these steps:</p>
<p>1. Locate your vhosts file. On my PC it&#8217;s: D:\apache\conf\extra\httpd-vhosts.conf<br />
2. Uncomment the following line: NameVirtualHost *:80<br />
3. Add your virtual host definition:</p>
<pre name="code" class="xml:nogutter"><virtualhost *:80>
     DocumentRoot "D:\www\myproject\"
     ServerName myproject.com
     <directory "D:\www\myproject\">
          Allow from all
          Options +Includes +Indexes +FollowSymLinks
          AllowOverride all
     </directory>
</virtualhost></pre>
<p>4. Open a file name hosts located at: C:\WINDOWS\system32\drivers\etc<br />
5. Add the following line: 127.0.0.1 myproject.com<br />
Check that for project path correct slashes are being used. Apache seems to not understand \ slashes and instead wants /. If you try and start apache from a command line it may output something like this:</p>
<blockquote><p><em>Syntax error on line 45 of D:/XamppLite/apache/conf/extra/httpd-vhosts.conf:<br />
DocumentRoot must be a directory</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.thedeveloperday.com/adding-a-virtual-host-on-apache-windows-xampp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

