Back-end not working possibly due to .htaccess file.
-
Hello,
I am not sure what’s going on, so im seeking your help.When logging on through the admin panel, I am able to see my dashboard, however i am unable to edit or click on any other link within the dashboard, this give me a page not found message.
I’ve looked possible solutions such as updating the .htaccess file
From
<FilesMatch “.*\.(phtml|php)$”>
Order Allow,Deny
Deny from all
</FilesMatch>
<FilesMatch “(index).php$”>
Order Allow,Deny
Allow from all
</FilesMatch>To
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>this did the trick, however the .htaccess file is overridden in a couple of minutes with the first part again. I’d like to not continue to modify the .htaccess file everytime i need to make a change to a post or view a plugin on the backend.
please help.
- The topic ‘Back-end not working possibly due to .htaccess file.’ is closed to new replies.