I’m changing some settings on my blog but I have some problems. I change the settings of permanet links, but to transform the posts and pages that are already in the system I need to have a write permission, and past the code [<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>] into the .htaccess archive.
Someone can help me? Because of this my blog is completely off!!!
You need to access your server via ftp or ssh and change the permissions of the .htaccess file to 777. If you’re using ftp you can use a client like FileZilla or if you’re using ssh you need to enter the command chmod 777 .htaccess
Thank you so much. Helped me a lot.