<?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>Website Builders Resource &#187; Apache</title>
	<atom:link href="http://websitebuildersresource.com/category/servers/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://websitebuildersresource.com</link>
	<description>Your Web Development Source</description>
	<lastBuildDate>Mon, 25 Jan 2010 21:53:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Set PHP Include Path in htaccess</title>
		<link>http://websitebuildersresource.com/2008/12/26/set-php-include-path-in-htaccess/</link>
		<comments>http://websitebuildersresource.com/2008/12/26/set-php-include-path-in-htaccess/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 17:00:27 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[include_path]]></category>

		<guid isPermaLink="false">http://www.websitebuildersresource.com/?p=431</guid>
		<description><![CDATA[If you do not want to change the include_path directories (or you don&#8217;t have access to php.ini) you can still set the include_path value within your root .htaccess file.
Update/Create /doc_root/.htaccess
Unix/Linux Servers
php_value include_path "/path/to/include"

Windows Servers
php_value include_path "C:/path/to/include"

PHP
To call the include within PHP do the following:
require_once('file.php');

The file above is in /doc_root/include/file.php
Options
Multiple include directories
If you have multiple include [...]]]></description>
			<content:encoded><![CDATA[<p>If you do not want to change the include_path directories (or you don&#8217;t have access to php.ini) you can still set the include_path value within your root .htaccess file.</p>
<h2>Update/Create /doc_root/.htaccess</h2>
<p><strong>Unix/Linux Servers</strong></p>
<pre><code class="html">php_value include_path "/path/to/include"
</code></pre>
<p><strong>Windows Servers</strong></p>
<pre><code class="html">php_value include_path "C:/path/to/include"
</code></pre>
<h2>PHP</h2>
<p>To call the include within PHP do the following:</p>
<pre><code class="php">require_once('file.php');
</code></pre>
<p>The file above is in /doc_root/include/file.php</p>
<h3>Options</h3>
<p><strong>Multiple include directories</strong></p>
<p>If you have multiple include directories you can chain them with the separator for your OS, : (*nix), ; (Windows).</p>
<pre><code class="html">php_value include_path "/path/to/include:/path/to/include2"
</code></pre>
<p><strong>Call files outside include directory</strong></p>
<p>You can also traverse your directory structure if you need to call a file that is outside of the include_path.</p>
<p><em>file.php in /doc_root/include/file.php</em></p>
<pre><code class="html">require_once('./include/file.php');
</code></pre>
<p><em>file.php in /doc_root/test/file.php</em></p>
<pre><code class="html">require_once('./test/file.php');
</code></pre>
<p><em>file.php in /test/file.php, Outside, up one level from /doc_root</em></p>
<pre><code class="html">require_once('../test/file.php');
</code></pre>
<p>		<script type="text/javascript"><!--
            google_ad_client = "pub-1943674323840609";
            google_ad_slot = "4085228747";
            google_ad_width = 468;
            google_ad_height = 60;
            //-->
        </script><br />
        <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
<div class="lightsocial_container"><a href="http://digg.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F&amp;title=Set+PHP+Include+Path+in+htaccess"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F&amp;title=Set+PHP+Include+Path+in+htaccess"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F&amp;title=Set+PHP+Include+Path+in+htaccess"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F&amp;headline=Set+PHP+Include+Path+in+htaccess"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a href="http://www.dzone.com/links/add.html?title=Set+PHP+Include+Path+in+htaccess&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a href="http://www.facebook.com/sharer.php?t=Set+PHP+Include+Path+in+htaccess&amp;u=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a href="http://delicious.com/save?title=Set+PHP+Include+Path+in+htaccess&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a href="http://www.dotnetkicks.com/kick/?title=Set+PHP+Include+Path+in+htaccess&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a href="http://dotnetshoutout.com/Submit?title=Set+PHP+Include+Path+in+htaccess&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F&amp;title=Set+PHP+Include+Path+in+htaccess&amp;summary=&amp;source="><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F26%2Fset-php-include-path-in-htaccess%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;</div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://websitebuildersresource.com/2010/01/24/php-country-array/" title="PHP Country Array">PHP Country Array</a></li><li><a href="http://websitebuildersresource.com/2010/01/04/blank-cdata-with-php-and-simplexml/" title="Blank CDATA with PHP and SimpleXML">Blank CDATA with PHP and SimpleXML</a></li><li><a href="http://websitebuildersresource.com/2009/02/07/jquery-select-manipulation-multiple-selects-json-default/" title="jQuery &lt;select&gt; Manipulation, Multiple Selects with JSON, Set Defaults, Oh My">jQuery &lt;select&gt; Manipulation, Multiple Selects with JSON, Set Defaults, Oh My</a></li><li><a href="http://websitebuildersresource.com/2008/12/18/removeforce-www-on-your-domain-and-301-redirect/" title="Remove/Force www on Your Domain and 301 Redirect">Remove/Force www on Your Domain and 301 Redirect</a></li><li><a href="http://websitebuildersresource.com/2008/11/23/my-essential-developers-toolbox/" title="My Essential Developer&#8217;s Toolbox &#8211; Part I">My Essential Developer&#8217;s Toolbox &#8211; Part I</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://websitebuildersresource.com/2008/12/26/set-php-include-path-in-htaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove/Force www on Your Domain and 301 Redirect</title>
		<link>http://websitebuildersresource.com/2008/12/18/removeforce-www-on-your-domain-and-301-redirect/</link>
		<comments>http://websitebuildersresource.com/2008/12/18/removeforce-www-on-your-domain-and-301-redirect/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 21:07:55 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[301 redirect]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[remove www]]></category>

		<guid isPermaLink="false">http://www.websitebuildersresource.com/?p=353</guid>
		<description><![CDATA[You want to ensure that Google and other SEs only see one domain so you don&#8217;t penalized for duplicate content (www and non-www indexed pages are not the same and counted as duplicates).
.htaccess
To redirect to domain.com and 301 existing pages:
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
To redirect to www.domain.com and 301 existing pages:
RewriteEngine [...]]]></description>
			<content:encoded><![CDATA[<p>You want to ensure that Google and other SEs only see one domain so you don&#8217;t penalized for duplicate content (www and non-www indexed pages are not the same and counted as duplicates).</p>
<h2>.htaccess</h2>
<p><strong>To redirect to domain.com and 301 existing pages:</strong></p>
<pre><code class="html">RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]</code></pre>
<p><strong>To redirect to www.domain.com and 301 existing pages:</strong></p>
<pre><code class="html">RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:Host} ^(?!www\.)(.+)$ [NC]
RewriteCond %{REQUEST_URI} (.+)
RewriteRule .? http(?%1s)://www.%2%3 [R=301,L]</code></pre>
<h2>Google</h2>
<p>If you a Google Webmaster account you can also make sure that the preferred domain matches your domain redirection choice.</p>
<ol>
<li>Log on to <a href="https://www.google.com/webmasters/tools/" target="_blank">Google Webmaster Tools</a></li>
<li>Click Settings</li>
<li>In the Preferred Domain section make your selection and click Save</li>
</ol>
<p>		<script type="text/javascript"><!--
            google_ad_client = "pub-1943674323840609";
            google_ad_slot = "4085228747";
            google_ad_width = 468;
            google_ad_height = 60;
            //-->
        </script><br />
        <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
<div class="lightsocial_container"><a href="http://digg.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F&amp;title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F&amp;title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F&amp;title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F&amp;headline=Remove%2FForce+www+on+Your+Domain+and+301+Redirect"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a href="http://www.dzone.com/links/add.html?title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a href="http://www.facebook.com/sharer.php?t=Remove%2FForce+www+on+Your+Domain+and+301+Redirect&amp;u=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a href="http://delicious.com/save?title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a href="http://www.dotnetkicks.com/kick/?title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a href="http://dotnetshoutout.com/Submit?title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F&amp;title=Remove%2FForce+www+on+Your+Domain+and+301+Redirect&amp;summary=&amp;source="><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F12%2F18%2Fremoveforce-www-on-your-domain-and-301-redirect%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;</div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://websitebuildersresource.com/2008/12/26/set-php-include-path-in-htaccess/" title="Set PHP Include Path in htaccess">Set PHP Include Path in htaccess</a></li><li><a href="http://websitebuildersresource.com/2008/11/20/create-a-custom-wordpress-page/" title="Create a Custom Wordpress Page">Create a Custom Wordpress Page</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://websitebuildersresource.com/2008/12/18/removeforce-www-on-your-domain-and-301-redirect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache WAMP vhost with SSL Configuration</title>
		<link>http://websitebuildersresource.com/2008/11/28/apache-wamp-vhost-with-ssl-configuration/</link>
		<comments>http://websitebuildersresource.com/2008/11/28/apache-wamp-vhost-with-ssl-configuration/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 15:06:44 +0000</pubDate>
		<dc:creator>Jason Maletsky</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[iis and apache same server]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[vhosts]]></category>
		<category><![CDATA[wamp]]></category>

		<guid isPermaLink="false">http://www.websitebuildersresource.com/?p=181</guid>
		<description><![CDATA[If you are developing in a Windows environment and need to host multiple sites on your Apache development workstation or server here are some tips for setting up your Apache configuration.
Download and install XAMPP
http://www.apachefriends.org/en/xampp-windows.html
Verify apache is running after installation
&#60;a href="http://localhost" target="_blank"&#62;http://localhost&#60;/a&#62;
NOTE: If you are also running IIS you will need to disable socket pooling that [...]]]></description>
			<content:encoded><![CDATA[<p>If you are developing in a Windows environment and need to host multiple sites on your Apache development workstation or server here are some tips for setting up your Apache configuration.</p>
<p><strong>Download and install XAMPP</strong></p>
<blockquote><p><a href="http://www.apachefriends.org/en/xampp-windows.html" target="_blank">http://www.apachefriends.org/en/xampp-windows.html</a></p></blockquote>
<p><strong>Verify apache is running after installation</strong></p>
<pre><code class="html">&lt;a href="http://localhost" target="_blank"&gt;http://localhost&lt;/a&gt;</code></pre>
<p>NOTE: If you are also running IIS you will need to disable socket pooling that is turned on by default and restart your workstation or server after making the changes. You won&#8217;t have to do this if you are using VS.NET built-in debug web server (cassini) for your .NET development. You will also need to use an alternate IP address for IIS as well as Apache and set * to the IP used for Apache in the VirtualHost block header below.</p>
<p><em>Windows Server 2000:</em> <a href="http://articles.techrepublic.com.com/5100-10878_11-6067036.html" target="_blank">http://articles.techrepublic.com.com/5100-10878_11-6067036.html</a></p>
<p><em>Windows Server 2003:</em> <a href="http://www.sitebuddy.com/Apache/IIS/same/server" target="_blank">http://www.sitebuddy.com/Apache/IIS/same/server</a></p>
<p><strong>Open httpd-vhosts.conf</strong></p>
<p>Make a backup of the default vhosts config; eg.</p>
<pre><code class="html">&lt;install dir&gt;\xampp\apache\conf\extra\httpd.conf.bak.</code></pre>
<p>With your favorite text editor (<a href="http://notepad-plus.sourceforge.net/" target="_blank">Notepad++</a> is a great one) open</p>
<pre><code class="html">&lt;install dir&gt;\xampp\apache\conf\extra\httpd.conf</code></pre>
<p>Copy the following.</p>
<pre><code class="html"># HTTP vhosts
NameVirtualHost *:80

&lt;VirtualHost *:80&gt;
  DocumentRoot "&lt;install dir&gt;\htdocs\your-site.com"
  ServerName your-site
  ServerAlias your-site
&lt;/VirtualHost&gt;

# HTTPS vhosts
NameVirtualHost *:443

&lt;VirtualHost *:443&gt;
  DocumentRoot "&lt;install dir&gt;\htdocs\your-site.com"
  ServerName your-site
  ServerAlias your-site

  SSLEngine on
  SSLCertificateFile conf/ssl.crt/server.crt
  SSLCertificateKeyFile conf/ssl.key/server.key
&lt;/VirtualHost&gt;</code></pre>
<p><strong>Restart Apache</strong></p>
<p>Open a command prompt, Windows + R <em>or</em> Windows + R + services.msc and restart Apache</p>
<pre><code class="html">C:\&gt; net stop apache2 &amp;&amp; net start apache2</code></pre>
<p><strong>Update hosts</strong></p>
<p>Copy and make a backup of your hosts file.</p>
<pre><code class="html">%SystemRoot%\system32\drivers\etc\hosts.bak</code></pre>
<p>Open your hosts file and add your new vhost site. The IP address should match the same IP address as your local workstation.</p>
<pre><code class="html">192.168.1.2 your-site</code></pre>
<p>Check that you can ping your new hosts entry.</p>
<pre><code class="html">C:\&gt; ping your-site</code></pre>
<p><strong>Moment of truth</strong></p>
<p>If all went well you should be able to open your new vhost site.</p>
<pre><code class="html"><a href="http://your-site" target="_blank">http://your-site</a></code></pre>
<p>		<script type="text/javascript"><!--
            google_ad_client = "pub-1943674323840609";
            google_ad_slot = "4085228747";
            google_ad_width = 468;
            google_ad_height = 60;
            //-->
        </script><br />
        <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></p>
<div class="lightsocial_container"><a href="http://digg.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F&amp;title=Apache+WAMP+vhost+with+SSL+Configuration"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a href="http://www.reddit.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F&amp;title=Apache+WAMP+vhost+with+SSL+Configuration"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F&amp;title=Apache+WAMP+vhost+with+SSL+Configuration"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F&amp;headline=Apache+WAMP+vhost+with+SSL+Configuration"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a href="http://www.dzone.com/links/add.html?title=Apache+WAMP+vhost+with+SSL+Configuration&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a href="http://www.facebook.com/sharer.php?t=Apache+WAMP+vhost+with+SSL+Configuration&amp;u=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a href="http://delicious.com/save?title=Apache+WAMP+vhost+with+SSL+Configuration&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a href="http://www.dotnetkicks.com/kick/?title=Apache+WAMP+vhost+with+SSL+Configuration&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a href="http://dotnetshoutout.com/Submit?title=Apache+WAMP+vhost+with+SSL+Configuration&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F&amp;title=Apache+WAMP+vhost+with+SSL+Configuration&amp;summary=&amp;source="><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a href="http://www.technorati.com/faves?add=http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a href="http://twitter.com/home?status=Reading+http%3A%2F%2Fwebsitebuildersresource.com%2F2008%2F11%2F28%2Fapache-wamp-vhost-with-ssl-configuration%2F"><img src="http://websitebuildersresource.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;</div><h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://websitebuildersresource.com/2008/11/28/apache-wamp-vhost-with-ssl-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
