views:

21

answers:

1

I've been trying things on my server but I can't figure out what's going wrong. As of now, this is the .htaccess I have:

Options +FollowSymlinks
RewriteEngine on
RewriteRule (.*) $1 [NC, L]

Instead of rewriting to 'match' it rewrites to 'match'.php Any idea why?

A: 

The MultiViews option can cause such a behavior. Try to disable it.

Gumbo