• Hello!

    I have a persistent problem with permalinks set “%postname%” giving an error saying:

    Not Found
    The requested URL /testisivu was not found on this server.

    (See for example http://www.samulilintula.net/testisivu whose slug is “testisivu”.)

    I’m now running WP2.3.3 with classic theme but I also had the same problem with WP2.2.3 with another theme. WordPress is installed in http://www.samulilintula.net/wordpress/

    I have tried to fix the problem by changing my .htaccess file which now contains:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    Options +FollowSymLinks -Multiviews [*]
    RewriteEngine On
    RewriteBase / [**]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L] [***]
    </IfModule>

    # END WordPress

    [*] I have also tried without this (the default).
    [**] This has also been “RewriteBase /wordpress/”
    [***] This has also been “RewriteRule . /index.php [L]”

    Any help is greatly appreciated.

    Samuli Lintula

Viewing 1 replies (of 1 total)
  • Thread Starter samulili

    (@samulili)

    Update: I have changed the permissions of .htaccess (in the root directory) to 666 when it used to be 644. Now when I change my permalink structure to %postname% the .htaccess file looks like this:

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

    # END WordPress

    What remains the same is that links still don’t work…

Viewing 1 replies (of 1 total)
  • The topic ‘“Not found” error’ is closed to new replies.