• Resolved Kozley

    (@kozley)


    I dont understand why I cant use permalink. I was try change to another permalink e.g Day and name, Month and name, Numeric, and Custom Structure. I have read on http://codex.ww.wp.xz.cn/Using_Permalinks and trouble solution. Only default works!

    I’m using Ubuntu 10.10 Server Edition as own webserver with Apache2.
    Looks this my httpd.conf:

    <Directory /var/www>
    Options FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    </Directory>

    .htaccess:

    # 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

    It shows just Not Found 404 and has try create new post, same problem. How can I solve the problem?

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

    (@kozley)

    Sorry for double post. Now I have found solution!

    I was added to httpd.conf:

    <Directory “/var/www/”>
    Options Indexes MultiViews +FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    </Directory>

    So it works perfectly 🙂

Viewing 1 replies (of 1 total)

The topic ‘Permalink problem’ is closed to new replies.