How to enable mod_rewrite for Apache 2.2 - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:19:40Zhttp://stackoverflow.com/feeds/question/869092http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/869092/how-to-enable-modrewrite-for-apache-2-20How to enable mod_rewrite for Apache 2.2Darth2009-05-15T14:37:40Z2009-05-16T22:31:14Z
<p>I've got fresh install of Apache 2.2 on my Vista machine, everything works fine, except mod rewrite.</p>
<p>I've uncommented </p>
<pre><code>LoadModule rewrite_module modules/mod_rewrite.s
</code></pre>
<p>but none of my rewrite rules works, even simple ones like </p>
<pre><code>RewriteRule not_found %{DOCUMENT_ROOT}/index.php?page=404
</code></pre>
<p>All the rules I'm using are working on my hosting, so they should be ok, so my question is, is there any hidden thing in apache configuration, that could block mod rewrite?</p>
http://stackoverflow.com/questions/869092/how-to-enable-modrewrite-for-apache-2-2/869115#8691150Answer by Taylor L for How to enable mod_rewrite for Apache 2.2Taylor L2009-05-15T14:42:08Z2009-05-15T14:42:08Z<p>Add these tags before the first RewriteRule:</p>
<pre><code>RewriteEngine On
RewriteLog logs/rewrite_log
RewriteLogLevel <log level 0-9>
</code></pre>
http://stackoverflow.com/questions/869092/how-to-enable-modrewrite-for-apache-2-2/869125#8691253Answer by Aiden Bell for How to enable mod_rewrite for Apache 2.2Aiden Bell2009-05-15T14:43:41Z2009-05-15T14:43:41Z<p>Turn the engine on for your host or vhost or directory</p>
<pre><code><Directory /var/www/website/html>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/images/
RewriteRule ... ...
RewriteRule
</Directory>
</code></pre>
<p>Or in your vhost without the directory directive.</p>
http://stackoverflow.com/questions/869092/how-to-enable-modrewrite-for-apache-2-2/869489#8694890Answer by Michael Cramer for How to enable mod_rewrite for Apache 2.2Michael Cramer2009-05-15T15:52:58Z2009-05-15T15:52:58Z<p>There's obviously more than one way to do it, but I would suggest using the more standard:</p>
<pre><code>ErrorDocument 404 /index.php?page=404
</code></pre>
http://stackoverflow.com/questions/869092/how-to-enable-modrewrite-for-apache-2-2/873439#8734390Answer by gabehabe for How to enable mod_rewrite for Apache 2.2gabehabe2009-05-16T22:17:59Z2009-05-16T22:31:14Z<p><strong><edit></strong></p>
<p>Just noticed you said mod_rewrite.s instead of mod_rewrite.so - hope that's a typo in your question and not in the httpd.conf file! :)</p>
<p><strong></edit></strong></p>
<p>I'm more used to using Apache on Linux, but I had to do this the other day. </p>
<p>First off, take a look in your Apache install directory. (I'll be assuming you installed it to "C:\Program Files" here)</p>
<p>Take a look in the folder: "C:\Program Files\Apache Software Foundation\Apache2.2\modules" and make sure that there's a file called mod_rewrite.so in there. (It should be, it's provided as part of the default install.</p>
<p>Next, open up "C:\Program Files\Apache Software Foundation\Apache2.2\conf" and open httpd.conf. Make sure the line:</p>
<pre><code>#LoadModule rewrite_module modules/mod_rewrite.so
</code></pre>
<p>is uncommented:</p>
<pre><code>LoadModule rewrite_module modules/mod_rewrite.so
</code></pre>
<p>Also, if you want to enable the RewriteEngine by default, you might want to add something like </p>
<pre><code><IfModule mod_rewrite>
RewriteEngine On
</IfModule>
</code></pre>
<p>to the end of your httpd.conf file.</p>
<p>If not, make sure you specify</p>
<pre><code>RewriteEngine On
</code></pre>
<p>somewhere in your .htaccess file.</p>