1
Guys set up my htacess to pick up any word I type in the URL and search for the php file.
It works like this: www.meusite.com.br/City and it redirects to www.meusite.com.br/Search/City.php
The code goes 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, htacess has to send to error page.html
How do I do that?
Fernando, can you explain this line of code? So the answer is more complete, otherwise it is a comment/question only...
– Sergio