up vote 0 down vote favorite
1
share [g+] share [fb]

I've got fresh install of Apache 2.2 on my Vista machine, everything works fine, except mod rewrite.

I've uncommented

LoadModule rewrite_module modules/mod_rewrite.s

but none of my rewrite rules works, even simple ones like

RewriteRule not_found %{DOCUMENT_ROOT}/index.php?page=404

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?

link|improve this question

Have you read the documentation? httpd.apache.org/docs/2.2/mod/mod_rewrite.html – Gumbo May 15 '09 at 14:48
actually the problem was that i had wrong path, because ${DOCUMENT_ROOT} pointed me to root directory which was ok on hosting, but wrong on local, so the problem wasnt just RewriteEngine On, which i already had .. – Darth May 16 '09 at 10:29
Another 'have you read the documenation' link. Thanks for the super helpful response Gumbo. You're so thoughtful. – chris.ub. May 13 '11 at 16:18
feedback

6 Answers

up vote 3 down vote accepted

Turn the engine on for your host or vhost or directory

<Directory /var/www/website/html>
    RewriteEngine On
    RewriteCond %{REQUEST_URI} !^/images/
    RewriteRule ... ...
    RewriteRule 
</Directory>

Or in your vhost without the directory directive.

link|improve this answer
feedback

In order to use mod_rewrite you can type the following command in the terminal:

a2enmod rewrite

Restart apache2 after

/etc/init.d/apache2 restart

Then, if you'd like, you can use the following .htaccess file.

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
</IfModule>

The above .htaccess file (if placed in your DocumentRoot) will redirect all traffic to an index.php file in the DocumentRoot unless the file exists.

So, let's say you have the following directory structure and httpdocs is the DocumentRoot

httpdocs/
    .htaccess
    index.php
    images/
        hello.png
    js/
        jquery.js
    css/
        style.css
includes/
    app/
        app.php

Any file that exists in httpdocs will be served to the requester using the .htaccess shown above, however, everything else will be redirected to httpdocs/index.php. Your application files in includes/app will not be accessible.

link|improve this answer
The ideas here are correct for a UNIX CLI but the commands only work for a Debian based Linux distributions and not a Windows environment of the OP. – Jason Rikard Jul 21 '11 at 19:45
a2enmod rewrite did the job – Dr Casper Black Sep 24 '11 at 18:21
feedback

For my situation, I had

RewriteEngine On

in my .htaccess, along with the module being loaded, and it was not working.

The solution to my problem was to edit my vhost entry to inlcude

AllowOverride all

in the <Directory> section for the site in question.

link|improve this answer
feedback

I've written about this in a article: http://www.jarrodoberto.com/articles/2011/11/enabling-mod-rewrite-on-ubuntu

Try setting: "AllowOverride All".

link|improve this answer
feedback

There's obviously more than one way to do it, but I would suggest using the more standard:

ErrorDocument 404 /index.php?page=404
link|improve this answer
feedback

<edit>

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! :)

</edit>

I'm more used to using Apache on Linux, but I had to do this the other day.

First off, take a look in your Apache install directory. (I'll be assuming you installed it to "C:\Program Files" here)

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.

Next, open up "C:\Program Files\Apache Software Foundation\Apache2.2\conf" and open httpd.conf. Make sure the line:

#LoadModule rewrite_module modules/mod_rewrite.so

is uncommented:

LoadModule rewrite_module modules/mod_rewrite.so

Also, if you want to enable the RewriteEngine by default, you might want to add something like

<IfModule mod_rewrite>
    RewriteEngine On
</IfModule>

to the end of your httpd.conf file.

If not, make sure you specify

RewriteEngine On

somewhere in your .htaccess file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.