.htaccess file
-
Anytime I make changes to my site, it is no longer accessible, and forces a ‘downloadable’ file. I reached out to my hosting company, and they told me that anytime I make a change to the site via the WordPress Dashboard, it’s triggering the issue with the .htaccess file.
To fix it, I’ve had to go into my file manager, delete the existing .htaccess and create a new one using the following code, which does in fact fix the issue.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
However, I am at a stand still and can’t make change to my site at this point because each time it reverts back.
Currently, the site is functional. I can’t make any changes to it, otherwise the issue will recur.
I am set up with Bluehost on their Plus plan on shared hosting platform.
Please help! Thank you!
- This topic was modified 6 years, 11 months ago by .
- This topic was modified 6 years, 11 months ago by .
The page I need help with: [log in to see the link]
- The topic ‘.htaccess file’ is closed to new replies.