<?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>Knowledge Sharing &#187; Apache</title>
	<atom:link href="http://blog.danigunawan.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.danigunawan.com</link>
	<description>"Say it... although a word..."</description>
	<lastBuildDate>Wed, 25 Jan 2012 00:14:12 +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>Rename htaccess.txt to be .htaccess in Windows</title>
		<link>http://blog.danigunawan.com/web/rename-htaccesstxt-to-be-htaccess-in-windows/</link>
		<comments>http://blog.danigunawan.com/web/rename-htaccesstxt-to-be-htaccess-in-windows/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 02:00:26 +0000</pubDate>
		<dc:creator>Dagu</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://blog.danigunawan.com/?p=308</guid>
		<description><![CDATA[In default Joomla 1.5 installation, there is a file named htaccess.txt. This file will be used if we use Joomla SEO, that is option Use Apache mod_rewrite. Before it can be used, this file should be renamed to .htaccess. In Linux OS, this case is not a big problem, because it allows creation this kind [...]
Related posts:<ol>
<li><a href='http://blog.danigunawan.com/web/joomla-15-seo/' rel='bookmark' title='Joomla! 1.5 SEO'>Joomla! 1.5 SEO</a></li>
<li><a href='http://blog.danigunawan.com/review/joomla-won-best-cms-award-again/' rel='bookmark' title='Joomla! Won &quot;Best CMS Award&quot; (Again)'>Joomla! Won &quot;Best CMS Award&quot; (Again)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In default Joomla 1.5 installation, there is a file named <strong>htaccess.txt</strong>. This file will be used if we use Joomla SEO, that is option <strong>Use Apache mod_rewrite</strong>. Before it can be used, this file should be renamed to <strong>.htaccess</strong>. In Linux OS, this case is not a big problem, because it allows creation this kind of file (file name is started with &#8220;dot&#8221; character). For Windows user this case is a problem, because Windows doesn&#8217;t allow creation this kind of file. If we force it, then a warning is appear like shown below:</p>
<div id="attachment_311" class="wp-caption aligncenter" style="width: 354px"><a href="http://blog.danigunawan.com/wp-content/uploads/2008/11/htaccess.jpg"><img class="size-full wp-image-311" title="Error pada saat mengganti nama file htaccess.txt menjadi .htaccess" src="http://blog.danigunawan.com/wp-content/uploads/2008/11/htaccess.jpg" alt="    Error while renaming htaccess.txt to .htaccess" width="344" height="137" /></a><p class="wp-caption-text">Error while renaming htaccess.txt to .htaccess</p></div>
<p>In order to rename htaccess.txt to .htaccess, we could do it through command prompt. Syntax:</p>
<pre>ren [htaccess.txt directory]\htaccess.txt .htaccess</pre>
<p>Example:</p>
<pre>ren DaGu\htdocs\joomla15\htaccess.txt .htaccess</pre>
<p>That&#8217;s it!</p>
<p>Related posts:<ol>
<li><a href='http://blog.danigunawan.com/web/joomla-15-seo/' rel='bookmark' title='Joomla! 1.5 SEO'>Joomla! 1.5 SEO</a></li>
<li><a href='http://blog.danigunawan.com/review/joomla-won-best-cms-award-again/' rel='bookmark' title='Joomla! Won &quot;Best CMS Award&quot; (Again)'>Joomla! Won &quot;Best CMS Award&quot; (Again)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.danigunawan.com/web/rename-htaccesstxt-to-be-htaccess-in-windows/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Activate mod_rewrite in Apache</title>
		<link>http://blog.danigunawan.com/web/activate-mod_rewrite-in-apache/</link>
		<comments>http://blog.danigunawan.com/web/activate-mod_rewrite-in-apache/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 23:51:31 +0000</pubDate>
		<dc:creator>Dagu</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://blog.danigunawan.com/?p=296</guid>
		<description><![CDATA[On the Internet, we often find URL which has many query strings, like show below: http://blog.danigunawan.com/joomla15/index.php?option=com_content&#38;view=article&#38;id=19&#38;Itemid=27 URL with form above will be hard to be indexed by the search engine if we compare with the URL below: http://blog.danigunawan.com/joomla15/joomla-overview URL which has many query strings can be formatted like in second example using rewrite URL. To [...]
Related posts:<ol>
<li><a href='http://blog.danigunawan.com/web/joomla-15-seo/' rel='bookmark' title='Joomla! 1.5 SEO'>Joomla! 1.5 SEO</a></li>
<li><a href='http://blog.danigunawan.com/programming/load-php-extension/' rel='bookmark' title='Load PHP Extension'>Load PHP Extension</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>On the Internet, we often find URL which has many query strings, like show below:</p>
<pre><span>h</span>ttp://blog.danigunawan.com/joomla15/index.php?option=com_content&amp;view=article&amp;id=19&amp;Itemid=27</pre>
<p>URL with form above will be hard to be indexed by the search engine if we compare with the URL below:</p>
<pre><span>h</span>ttp://blog.danigunawan.com/joomla15/joomla-overview</pre>
<p>URL which has many query strings can be formatted like in second example using rewrite URL. To rewrite URL, it could be done using certain class in web programming language. I won&#8217;t discuss it here. Besides, it can be done using a module in apache web server named <strong>mod_rewrite</strong>. As default, mod_rewrite is not active.</p>
<p>Module mod_rewrite can be activated by editing apache configuration file. Apache configuration file is usually saved in httdp.conf file. Apache configuration file for XAMPP Windows version can be found in <strong>[XAMPP installation directory]/apache/conf</strong>. Open httpd.conf with text editor and find the word &#8220;mod_rewrite&#8221;. For XAMPP Windows version it usually can be found in line 118. As default, in inactive module, there is character &#8220;#&#8221; in the start of the line (It means that line will not be executed by apache). Example:</p>
<pre>#LoadModule rewrite_module modules/mod_rewrite.so</pre>
<p>To activate it, we need to remove character # only. After that, restart apache. Module mod_rewrite will active after apache run.</p>
<p>Related posts:<ol>
<li><a href='http://blog.danigunawan.com/web/joomla-15-seo/' rel='bookmark' title='Joomla! 1.5 SEO'>Joomla! 1.5 SEO</a></li>
<li><a href='http://blog.danigunawan.com/programming/load-php-extension/' rel='bookmark' title='Load PHP Extension'>Load PHP Extension</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.danigunawan.com/web/activate-mod_rewrite-in-apache/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

