Ok, i have a simple .htaccess for my engine. It simply rewrites all requests to index.php (much like Wordpress does).
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
Now, i've run into an issue. I have search.php, which should be included with index.php. But, when i try to open example.com/search/ (which should be rewrited to index.php), it actually opens search.php which is in the same directory. How can i tell the engine to disable this strange 'alias'?
Thanks