• Hi everyone,

    I recently installed WordPress on my computer running an Apache 2.2 HTTP server. The problem I’m experiencing right now is that whenever I try and load the blog I have created, it displays the contents of the folder where I uploaded the WordPress files instead of the blog page itself. Is there any other setting I have to change to fix this?

    Thanks in advance…

Viewing 2 replies - 1 through 2 (of 2 total)
  • Sounds like you have directory browsing on. Open your httpd.conf file and look at your virtual host settings (usually near the bottom). Look for the “Options Indexes” line and change it to “Options -Indexes”

    It seems that default page is not set. You can add follwoing code inyour httpd.conf after “LoadModule”:

    <IfModule dir_module>
        DirectoryIndex index.php index.php3 index.html index.htm
    </IfModule>

    You can also set default page from .htaccess. Open your .htaccess file and add the following line:

    DirectoryIndex index.php index.php3 index.html index.htm

    Kailash

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Browser does not display the blog main page properly’ is closed to new replies.