Failed permanent links in wordpress

1

I have changed the permanent links in settings. I have created the .htaccess with the code that wordpress has given me, I have also enabled the rewrite mod in apache and I have given 777 permissions to the .htaccess but the links still fail me.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /adela/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /adela/index.php [L]
</IfModule>
    
asked by Rafael Hernández 26.12.2016 в 20:41
source

1 answer

1

Go to your BDD, table "wp_options" and modify the "permalink_structure" field

If you used it by default, fill it with: /index.php/%year% /% monthnum% /% day% /% postname% /

    
answered by 26.12.2016 / 21:37
source