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>