• Resolved tylermachado

    (@tylermachado)


    Hi everyone — I’ve got a new WordPress site installed that has one real annoying problem: If I update to pretty permalinks, my links suddenly go 404.

    I’ve tried this with both a writable .htaccess, and with copy-pasting the WordPress message into the .htaccess myself, but the problem is the same either way. I even copied an .htaccess from a site that I know functions correctly, but still no dice. I’ve also disabled all the plugins, that didn’t solve it either. Is there some other trick I should be aware of?

Viewing 4 replies - 1 through 4 (of 4 total)
  • I think you need to speak to your hosts about this.

    Thread Starter tylermachado

    (@tylermachado)

    I do have a feeling it’s a host issue. This is what my .htaccess looks like… that’s all correct, right?

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

    I agree with Esmi – This is probably a problem with your host. I’ve tried it too…

    Thread Starter tylermachado

    (@tylermachado)

    Hey everyone — spoke with the host. Adding AllowOverride all to the vhost file seems to have fixed it!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘permalinks not working, even after .htaccess fix’ is closed to new replies.