How to enable mod_rewrite for Apache 2.2 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:19:40Z http://stackoverflow.com/feeds/question/869092 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/869092/how-to-enable-modrewrite-for-apache-2-2 0 How to enable mod_rewrite for Apache 2.2 Darth 2009-05-15T14:37:40Z 2009-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#869115 0 Answer by Taylor L for How to enable mod_rewrite for Apache 2.2 Taylor L 2009-05-15T14:42:08Z 2009-05-15T14:42:08Z <p>Add these tags before the first RewriteRule:</p> <pre><code>RewriteEngine On RewriteLog logs/rewrite_log RewriteLogLevel &lt;log level 0-9&gt; </code></pre> http://stackoverflow.com/questions/869092/how-to-enable-modrewrite-for-apache-2-2/869125#869125 3 Answer by Aiden Bell for How to enable mod_rewrite for Apache 2.2 Aiden Bell 2009-05-15T14:43:41Z 2009-05-15T14:43:41Z <p>Turn the engine on for your host or vhost or directory</p> <pre><code>&lt;Directory /var/www/website/html&gt; RewriteEngine On RewriteCond %{REQUEST_URI} !^/images/ RewriteRule ... ... RewriteRule &lt;/Directory&gt; </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#869489 0 Answer by Michael Cramer for How to enable mod_rewrite for Apache 2.2 Michael Cramer 2009-05-15T15:52:58Z 2009-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#873439 0 Answer by gabehabe for How to enable mod_rewrite for Apache 2.2 gabehabe 2009-05-16T22:17:59Z 2009-05-16T22:31:14Z <p><strong>&lt;edit&gt;</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>&lt;/edit&gt;</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>&lt;IfModule mod_rewrite&gt; RewriteEngine On &lt;/IfModule&gt; </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>