| | Things I've recently searched for on the net: General topics, and computer searches...Fun with .htaccess filesThe .htaccess file can be placed in various directories of your Apache web server to provide for directory specific handling of various options for that directory. I am regularly looking up information about the - .htaccess 404 - This gave some details about how to do 404 redirection from an .htaccess file.
ErrorDocument 404 errors/404.html Note: It's probably better to start with a leading / so that you make sure that this page can always be found. - .htaccess 404 rewrite - How would you combine 404 handling with rewrite rules?
That's easy. These lines will redirect every not found URL to a different server: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteRule (.+) http://404.click11.com/$1 - .htaccess followsymlinks
From various sources around the net, I have put together a summary of htaccess tips and tricks. |
|