No not the default landing page, but a brand new PHP page.
ie:
/index.php : loads WP in root folder
/page2.php : This is a copy of the code in "/index.php" but is named differently. When I try and run this, instead of loading:
mysite.com/page2.php
it loads that for a second and then redirects to
mysite.com
I want to know if there is a way to have a bunch of "copies" of WordPress's index.php, renamed differently, each loading a different page from WordPress statically.
I also thought about doing it with .htaccess something like :
RewriteEngine On
RewriteRule ^(.*/)?page2.php http://www.mysite.com/index.php?page_id=123 [L]
But I have yet to get over the .htaccess learning curve and get this to work!
Thanks in advance for any answers!!