• I’m having that age old problem of getting a 404 error page (except homepage) on all pages after I tried to change permalinks to Post Name. I’ve currently set it on Plain since Post Name doesn’t load the pages. My wordpress site is in the directory /htdocs/wordpress/

    I’ve tried reseting the Permalinks but selecting diff options and hitting “Save Changes” and I’ve also tried deleting and updating a new .htaccess but still no luck.

    This is the .htaccess in the /wordpress/ directory:

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

    And this is the .htaccess file in the root (/htdocs/) directory:

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

    I’m not sure that I can see any mod_rewrite or any httpd.conf files or I’m just not sure where to find these files or info.

    I’m really not sure what else could be wrong and desperately need to fix this asap. Any help would be greatly appreciated.

    Thanks!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Pretty permalink leads to 404 even after all possible solutions’ is closed to new replies.