I think moving wp-signup.php to its own directory and then password-protecting the directory is the best way to limit MU signups. How would I do that?
So instead of /wp-signup.php being in the same directory as the rest of the MU files, it'd be
/signup/wp-signup.php
wp-signup.php has links like this:
require( dirname(__FILE__) . '/wp-load.php' );
...How do I change those links to point to one folder below? By changing all those references in wp-signup.php, would it work?
Has anyone done this before? Any help is appreciated, thanks.