<?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>Technology Articles &#187; apache 2.2</title>
	<atom:link href="http://technologydribble.info/tag/apache-2-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://technologydribble.info</link>
	<description>Articles About Technology</description>
	<lastBuildDate>Mon, 19 Dec 2011 11:11:23 +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>Setting Up Virtual Directory In Apache 2.2</title>
		<link>http://technologydribble.info/2009/08/23/setting-up-virtual-directory-in-apache-2-2/</link>
		<comments>http://technologydribble.info/2009/08/23/setting-up-virtual-directory-in-apache-2-2/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 01:37:39 +0000</pubDate>
		<dc:creator>ryelpango</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Virtual Directory]]></category>
		<category><![CDATA[apache 2.2]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://technologydribble.info/?p=150</guid>
		<description><![CDATA[In order to allow web access to a different directory outside the root directory, you need to give Apache access to the directory, and then use the Alias directive. The Alias directive will map any directory into the web root. &#8230; <a href="http://technologydribble.info/2009/08/23/setting-up-virtual-directory-in-apache-2-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In order to allow web access to a different directory outside the root directory, you need to give Apache access to the directory, and then use the <strong>Alias</strong> directive. The Alias directive will map any directory into the web root.</p>
<p>For example if you want to create a virtual directory called <strong>test</strong>, and the directory is in the <strong>D:/example/test</strong>, then modify your <strong>httpd.conf</strong> and add the following entry at the bottom of the file:</p>
<pre>&lt;Directory "D:/example/test/"&gt;
    Options Indexes
    AllowOverride all
    Order Allow,Deny
    Allow from all
&lt;/Directory&gt;

Alias /test D:/example/test</pre>
<p>On a typical Windows installation, the <strong>httpd.conf</strong> file is usually located in the following directory:</p>
<pre>C:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf</pre>
<p>So if a file <strong>file.htm</strong> exists in <strong>D:/example/test</strong>,<strong>  </strong>the URL of the resource is:</p>
<p><a href="http://www.example.com/test/file.html">http://www.example.com/test/file.html</a></p>
<p>and it will be served from:</p>
<pre>D:/example/test/file.html</pre>
<p>For more information visit the <a href="http://httpd.apache.org/docs/2.2/urlmapping.html">Apache HTTP Server Version 2.2 documentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://technologydribble.info/2009/08/23/setting-up-virtual-directory-in-apache-2-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

