vote up 1 vote down star

I'm using the following rewrite rule, but I can't get it to work:

RewriteRule  ^rates/([a-z]+)\.php$  /rates.php?c_user_action=view_type&vehicle_type=$1  [QSA,L,NC]

The URL I'm using is http://www.example.com/rates/motorhomes.php

At the moment it's just going to /rates.php without a query string.

The weird this is if I change the rewrite expression to ^rates-([a-z]+)\.php$ and the URL to http://www.example.com/rates-motorhomes.php then it works.

I've used something similar on other sites/servers without any issue, but I can't figure out what I'm doing wrong here. This server is running Apache 2.2.

I know mod_rewrite is working, because the following 2 rules work:

RewriteRule  ^blah([a-z]+)\.php$  /rates.php?test=$1  [L]
RewriteRule  ^(.*)\.[\d]+\.(css|js)$  $1.$2  [L]
flag

70% accept rate

1 Answer

vote up 3 vote down check

It’s probably MultiViews that’s causing this behavior, mapping /rates/motorhomes.php to /rates.php/motorhomes.php before passing the request through to mod_rewrite. Try to disable it:

Options -MultiViews
link|flag
Thank you!! All that and it's so simple.....grrr – Darryl Hein Oct 4 at 21:29

Your Answer

Get an OpenID
or

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