I set up my htacess to get any words I type in the URL and look for the php file.
It works like this: www.mysite.com/city and it redirects to www.mysite.com/Search/City.php
The code looks like this:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) Search/$1.php/ [QSA,L]
Well, what I need to do is, when the file is not found, the htacess has to send to error.html page
How do I do this?