After installing wordpress, I was impatient because I could not delete the file, so I will put the Linux deletion command here.
pwd /var/www/html
ls
index.php
wp-blog-header.php
wp-includes // directory
wp-settings.php
license.txt
wp-comments-post.php
wp-links-opml.php
wp-signup.php
readme.html
wp-config-sample.php
wp-load.php
wp-trackback.php
wp-activate.php
wp-content // directory
wp-login.php
xmlrpc.php
wp-admin // directory
wp-cron.php
wp-mail.php
Example: # rm -rf wp-admin
All the contents of the current directory will be deleted.
# rm -rf *
Recommended Posts