Hello
I have site running with apache mod_rewrite and php
In my public_html folder i have diss .htaccess file
RewriteEngine On
RewriteBase /
RewriteRule ^([0-9a-z]+)$ index.php?reurl=$1
this works fine if there are no files in that directory with the same name. so for example /favicon would match the file /favicon.ico and the RewriteRule would never be executed.
how can i stop /favicon to match /favicon.ico ?
Best regards Peter