• hello,
    I installed wp manualy in xampp htdocs dir.
    then im able to login in my admin page (console)
    but when im trying to see my site, i see just the list of files and folders in that directory (folder)
    what was wrong? I have conection to database, and almost everything is fine. but i dont see site im creating

Viewing 2 replies - 1 through 2 (of 2 total)
  • I once had that problem, and I think I fixed it by adding htaccess:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    # for \htdocs\wordpress\
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>
    
    # END WordPress

    note: change ‘wordpress’ (two places) to your own foldername inside htdocs.

    Thread Starter elrondsmith

    (@elrondsmith)

    i will try

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘problem after installing’ is closed to new replies.