After you’ve fully configured everything, load the index.php
file that’s in the directory you installed WordPress to and your blog should appear.
If you want the blog to show up as the front page for your entire site, then there are a few more steps to take. If you’re site is www.example.com
and you installed WordPress at www.example.com/wp
: You should access your admin panel and change the ‘Blog Address’ field tohttps://www.example.com
; then edit the line index.php
in the /wp
directory that says:
require('./wp-blog-header.php');
to:
require('./wp/wp-blog-header.php');
And that should be that.