Modifying or Adding .htaccess File

You are getting this error:
Inline image 1
It looks like something needs to be adjusted in the .htaccess file?:
 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.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
I used SSH but, FTP using Filezilla works. Create the “.htaccess” file using a text editor. Next, upload it to the root directory of your site. (Usually public_html)

Note: .htaccess needs to spelled exactly .htaccess
^notice the period

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.