Hello,
i have a problem with my php/apache server.
if a user goes to the URL
http://url/index.php/ (extra slash) he will
NOT get an error but a page without any image
how can i return a 404 error ?
i tested
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^/(.*) $1
but doesn't work :-(