The site is run on wordpress (latest) and is installed in /htdocs/www/ This htaccess file is in /htdocs/www/roh/ along with a bunch of images & some css.
I want requests to the old html files to redirect to their new wordpress pages. I got most of it working, except the example below.
RewriteEngine On
RewriteBase /htdocs/www
ErrorDocument 404 /htdocs/www/
Redirect /roh/z1/q2lvl[1-9].html http://www.lunaz.com/realms-of-hyrule/legend-of-zelda/maps
I go to www.lunaz.com/roh/z1/q2lvl2.html, and it 404s and takes me to the main 404 page in my wordpress theme.
I tried ErrorDocument 404 /htdocs/www/roh/404.html, but that just got me an isp redirected spam search page. The only way I got the main wordpress 404 page working was by going up directories untill something worked. I do not want to send 404s to an http:// address.
My questions:
Why doesn't the range of numbers [1-9] work?
Why can't I get /htdocs/www/roh/404.html working for anything in /roh & below?
Sorry for the basic questions, Not exatly sure what to search for, so Google is only giving me examples I've tried or have working already.