• Resolved cferr

    (@cferr)


    Hi,

    When .htaccess is turned on I can not access my blog posts (404 error). however, when I turn it off .htaccess(I rename the file) I cant login (page not found).

    ?? any ideas why this is happening?

Viewing 2 replies - 1 through 2 (of 2 total)
  • No, but I think you might solve it by (deleting whatever you have there and) beginning back at the beginning:

    # 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

    Thread Starter cferr

    (@cferr)

    Thanks, that worked.

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