Accessing WP multisite via IP instead of domain

That’s not how URLs work. If it was, the internet would be incredibly easy to hack as you could access any file in the entire file system by appending it to the servers IP. It’s also not how domains URLs and IPs work. Computers don’t connect to domains, they connect to IPs, all communication is … Read more

wordpress.mydomian.com 404 Error

I have changed the root directive to server block and it works pretty well, special thanks to @RichardSmith, who have had mentioned the problem. in case someone has the same Problem I will write a short explanation code. server { listen 80; root /var/www/blog.mydomian.com server_name blog.mydomian.com www.blog.mydomian.com # the rest of configuration }

WordPress Database Cleanup

WP is designed to use a single database. In fact you can have several sites in a single database because they’d each use a different table prefix. How difficult it’ll be to cleanup will depend on the code involved. I’d be mostly concerned that since the previous developer (I use the term loosely) didn’t use … Read more