<?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>TechiePark &#187; httpd</title>
	<atom:link href="http://www.techiepark.com/tag/httpd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techiepark.com</link>
	<description>everything about web technologies</description>
	<lastBuildDate>Thu, 02 Feb 2012 06:00:15 +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>How to enable GZIP Compression in Apache Server to Speed up Website</title>
		<link>http://www.techiepark.com/tutorials/how-to-enable-gzip-compression-in-apache-server-to-speed-up-website/</link>
		<comments>http://www.techiepark.com/tutorials/how-to-enable-gzip-compression-in-apache-server-to-speed-up-website/#comments</comments>
		<pubDate>Sat, 23 Apr 2011 09:56:54 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[gzip compression]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[mod_deflate]]></category>
		<category><![CDATA[speed up website]]></category>

		<guid isPermaLink="false">http://www.techiepark.com/?p=736</guid>
		<description><![CDATA[Compression is a simple and effective way to speed up your site. Modern browsers supports gzip compressed content and are capable of uncompressing gzip data into plain text. The gzip module configuration depends on your Apache Server version: Apache 1.3 uses mod_gzip while Apache 2.x uses mod_deflate. mod_gzip configuration for Apache 1.3.x: &#60;IfModule mod_gzip.c&#62; mod_gzip_on [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/how-to-enable-gzip-compression-in-apache-server-to-speed-up-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Add &#8211; Remove the WWW Prefix from Domain Name Using .htaccess</title>
		<link>http://www.techiepark.com/tutorials/how-to-add-remove-the-www-prefix-from-domain-name-using-htaccess/</link>
		<comments>http://www.techiepark.com/tutorials/how-to-add-remove-the-www-prefix-from-domain-name-using-htaccess/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 10:46:44 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>

		<guid isPermaLink="false">http://www.techiepark.com/?p=567</guid>
		<description><![CDATA[To avoid duplicate content problem with search engines, you have to redirect all pages to one common URL. This you can achieve using mod_rewrite of apache and .htaccess. To redirect any URL starting with www.domain.tld to domain.tld, you have to add the following code to .htaccess file. Do a 301 redirect for all http requests [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/how-to-add-remove-the-www-prefix-from-domain-name-using-htaccess/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Directory index forbidden by Options directive</title>
		<link>http://www.techiepark.com/tutorials/directory-index-forbidden-by-options-directive/</link>
		<comments>http://www.techiepark.com/tutorials/directory-index-forbidden-by-options-directive/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 06:59:20 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/?p=233</guid>
		<description><![CDATA[I was going through error log and saw this error in error log file. To solve this problem, In /etc/httpd/conf.d you will see a file entitled welcome.conf It looks like this: &#60;LocationMatch &#8220;^/+$&#8221;&#62; Options -Indexes ErrorDocument 403 /error/noindex.html &#60;/LocationMatch&#62; Change it to this: &#60;LocationMatch &#8220;^/+$&#8221;&#62; Options Indexes ErrorDocument 403 /error/noindex.html &#60;/LocationMatch&#62; Just remove the hyppen(-) [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/directory-index-forbidden-by-options-directive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating Custom Error Messages in Apache</title>
		<link>http://www.techiepark.com/tutorials/creating-custom-error-messages-in-apache/</link>
		<comments>http://www.techiepark.com/tutorials/creating-custom-error-messages-in-apache/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 00:29:00 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[custom error]]></category>
		<category><![CDATA[httpd]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/2008/01/07/creating-custom-error-messages-in-apache/</guid>
		<description><![CDATA[Below is an example of a httpd.conf file, just copy and paste into your file, but change the paths: ErrorDocument 404 /path/to/your/error/file/or/scriptErrorDocument 500 /path/to/your/error/file/or/scriptErrorDocument 403 /path/to/your/error/file/or/script A very important point to note is that the paths should be the relative paths. This means that the paths would be what you would type on the machine [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/creating-custom-error-messages-in-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirecting subdomains to directories in apache.</title>
		<link>http://www.techiepark.com/tutorials/redirecting-subdomains-to-directories-in-apache/</link>
		<comments>http://www.techiepark.com/tutorials/redirecting-subdomains-to-directories-in-apache/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 00:27:00 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[subdomain forwarding]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/2008/01/07/redirecting-subdomains-to-directories-in-apache/</guid>
		<description><![CDATA[If you want to be able to redirect blah.domain.com to domain.com/blah/ so that blah.domain.com is shown in the address bar here’s a quick and dirty how to: First off if you want any subdomain to be able to be redirected first you need to set-up your DNS correctly. In my case this was as simple [...]]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/redirecting-subdomains-to-directories-in-apache/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing mod_proxy_html</title>
		<link>http://www.techiepark.com/tutorials/installing-mod_proxy_html/</link>
		<comments>http://www.techiepark.com/tutorials/installing-mod_proxy_html/#comments</comments>
		<pubDate>Sat, 05 Jan 2008 00:05:00 +0000</pubDate>
		<dc:creator>TechiePark</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://laxmangunjikar.wordpress.com/2008/01/05/installing-mod_proxy_html/</guid>
		<description><![CDATA[Download mod_proxy_html.c from here (please remember to register if you use this software). Compile it like so apxs -a -c -I/usr/include/libxml2 -i mod_proxy_html.c Create a file /etc/httpd/conf.d/mod_proxy_html.conf LoadFile /usr/lib/libxml2.so LoadModule proxy_html_module /usr/lib/httpd/modules/mod_proxy_html.so ProxyHTMLExtended On]]></description>
		<wfw:commentRss>http://www.techiepark.com/tutorials/installing-mod_proxy_html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

