简体   繁体   中英

Find wordpress/buddypress unknown sub url

I need to automate the download of user data and shared files from a wordpress site that use buddypress.

The solution using curl proposed by the @antics's gist seems to adress all my requirements.

The problem is that I can't locate the exact URL of the login page */wp-login.php . There is no way to retrieve PHP files from an apache server and - even if I scrap the whole public part of the web site - I can't find any information about this specific URL.

How could I find this unknown URL */wp-login.php and which command line tool could I use to do that?

Any other cli solution to my problem is welcome.

It is in general will be redirected to the the root directory where the site is hosted. So if your site is www.example.com, it can be access at www.example.com/wp-login.php . For local server, it depends on how your root directory is configured. Either at http://localhost/wp-login.php (if it is directly installed at the root directory) or http://localhost/folder/wp-login.php (if it is within a directory of the root).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM