When I try to access my site https://duozmedia.com my site doesn’t open, instead a file downloads. If I log into the backend and go to Settings/Permalinks I have this message at the bottom:
“If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all.”
then this 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>
Can anybody tell me what is happening? Why my .htaccess file is not writable anymore and how I can fix this so as people can access my site?
Thanks