I am have changed the URL's for some of my blog pages - is there one command I can put in my .htaccess file that will cover ALL "not found" pages or any other sort of error page? I found this on another site, will it do the job?
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteRule \/.+ / [L,R]