• I have a website with the default permalinks, and I want to change to: /%postname%/ I have activated this kind of permalinks on my WP and the I´ve gone to the apache configuration file for this website and changed to:

    ...
            <Directory /var/www/gldhz>
                    Options Indexes FollowSymLinks MultiViews
                    AllowOverride None
                    Order allow,deny
                    allow from all
                   #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>
                   #wordpress
            </Directory>
    ...

    But I´m still having the same problem, after restarting apache2 the website is unable to find the links already created.
    Just in case it might help, my server is a Debian 6 standard installation.
    Any help will be highly appreciated.
    Kind Regards
    Abel

  • The topic ‘Problem to activate permalinks’ is closed to new replies.