I have a static page of the form page1.html in my root directory and another page index.php also in the root directory. What I am trying to do is move all old incoming links
mod_rewrite
rules and mod_alias
rules.Use this DocumentRoot/.htaccess
(one level above wordpress directory):
RewriteEngine On
RewriteRule ^(page1|page2)\.html?$ /wordpressInstallation/ [L,NC,R=301]
And remove Redirect
directives from your Wordpress .htaccess.