• I upgraded to WP 2.0 last night, and it all went smoothly with the exception of this.

    When I visit a directory that is meant to prompt me for a username/password (i.e., /stats/), WordPress somehow overrides that and decides to deliver a “404 not found” error. This *was* working just fine before. I noticed it with the /cgi-bin/ folder as well, but I attributed that to my own error because it was before I knew my stats directory was also failin.

    I am guessing it is something in the .htaccess or auth files? Help would be most appreciated. I searched but didn’t find anything on this, and I live for my stats. Yes, honestly I am that sad. ??

    Thanks!

    ETA: This post seems to cover a lot of the issues.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter roniabirk

    (@roniabirk)

    I just updated my WordPress, and it didn’t break my stats this time, but it does break my Gallery 2.0. It’s just a subdirectory (https://www.stripedwall.com/gallery), but it goes to the 404 page. I tried adding it to my htaccess just like I did for the /stats/ directory, but it still gives a 404.

    Help? My htaccess:


    # WP Fix
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_URI} ^/stats/(.*)$ [OR]
    RewriteCond %{REQUEST_URI} ^/gallery/(.*)$ [OR]
    RewriteCond %{REQUEST_URI} ^/failed_auth.html$
    RewriteRule ^.*$ - [L]
    </IfModule>

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

    # END WordPress

    Thread Starter roniabirk

    (@roniabirk)

    I also just created a junk folder with a blank index.htm file in it, and WP doesn’t try to 404 that one. Argh.

    https://stripedwall.com/junk/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Stats directory, 404 not found’ is closed to new replies.