<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>World of *Nix &#187; mod_rewrite</title>
	<atom:link href="http://www.lavluda.com/tag/mod_rewrite/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lavluda.com</link>
	<description>by S. M. Ibrahim (lavluda)</description>
	<lastBuildDate>Sun, 16 May 2010 16:23:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.5.3" -->
	<copyright>Copyright &#xA9; World of *Nix 2010 </copyright>
	<managingEditor>lavluda@yahoo.com (World of *Nix)</managingEditor>
	<webMaster>lavluda@yahoo.com (World of *Nix)</webMaster>
	<category>posts</category>
	<image>
		<url>http://www.lavluda.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>World of *Nix &#187; mod_rewrite</title>
		<link>http://www.lavluda.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>by S. M. Ibrahim (lavluda)</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &amp; Culture" />
	<itunes:author>World of *Nix</itunes:author>
	<itunes:owner>
		<itunes:name>World of *Nix</itunes:name>
		<itunes:email>lavluda@yahoo.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.lavluda.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>how to enable mod_rewrite in apache2.2 (debian/ubuntu)</title>
		<link>http://www.lavluda.com/2007/07/15/how-to-enable-mod_rewrite-in-apache22-debian/</link>
		<comments>http://www.lavluda.com/2007/07/15/how-to-enable-mod_rewrite-in-apache22-debian/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 14:57:11 +0000</pubDate>
		<dc:creator>lavluda</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Debian GNU/Linux]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Helps]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming Help]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apache module]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://lavluda.com/2007/07/15/how-to-enable-mod_rewrite-in-apache22-debian/</guid>
		<description><![CDATA[Here i am going to describe how to enable mod_rewrite in apache2.2 -specaily for debian. In default installion of apache2.2 on debian never enable mod_rewrite default. So you may need to enable . First install the apache2.2 with this command : debian user please use &#8220;su&#8221; before start this process ubuntu user please use &#8220;sudo [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Here i am going to describe how to enable mod_rewrite in apache2.2 -specaily for debian.</p>
<p>In default installion of apache2.2 on debian never enable mod_rewrite default. So you may need to enable .</p>
<p>First install the apache2.2 with this command :<br />
debian user please use &#8220;su&#8221; before start this process<br />
ubuntu user please use &#8220;sudo su&#8221; before start this process</p>
<p><code>apt-get install apache2 (it will install apache 2.2)</code></p>
<p>now use locate to find if the mod_rewrite.so is availble on your server</p>
<p><code>updatedb<br />
locate mod_rewrite.so<br />
</code></p>
<p>it will found in &#8220;/usr/lib/apache2/modules&#8221;</p>
<p>new apache follow some folders to enable and desuable mods.<br />
so now do this:</p>
<p><code>cd /etc/apache2/mods-enabled<br />
touch rewrite.load<br />
gedit rewrite.load (you may use any editor to edit this file)</code></p>
<p>now paste this following line</p>
<p><code>LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so</code></p>
<p>Then edit /etc/apache2/sites-available/000-default</p>
<p>Find the following</p>
<p>Options Indexes FollowSymLinks MultiViews<br />
AllowOverride None<br />
Order allow,deny<br />
allow from all</p>
<p>and change it to</p>
<p>Options Indexes FollowSymLinks MultiViews<br />
AllowOverride all<br />
Order allow,deny<br />
allow from all</p>
<p>and finally restart Apache</p>
<p>/etc/init.d/apache2 restart</p>
<p>OK, you done <img src='http://www.lavluda.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>don&#8217;t forget to comment, if it works or not.</p>
<p>thanks.</p>
<p><!--adsense#banner--></p>
number of view: 7935<img src="http://www.lavluda.com/?ak_action=api_record_view&id=95&type=feed" alt="" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.lavluda.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lavluda.com/2007/07/15/how-to-enable-mod_rewrite-in-apache22-debian/feed/</wfw:commentRss>
		<slash:comments>117</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.565 seconds -->
