skip to Main Content

I have tried many solutions which are given in Stack Overflow and it’s not working anymore. My Magento version is 1.5. Why am I getting this issue after I tried all the solution for admin?

3

Answers


  1. make sure that you have used index.php in url before admin route name.This is needed if url rewrites are enabled.

    Login or Signup to reply.
  2. index.php before /admin or any suffix you have

    Login or Signup to reply.
  3. For Ubuntu edit the file /etc/apache2/apache2.conf

    To edit this file use
    sudo vi /etc/apache2/apache2.conf command

    <Directory /var/www/>
         Options Indexes FollowSymLinks
         AllowOverride None
         Require all granted
    </Directory>
    

    to

    <Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>
    

    After this run command

    sudo service apache2 restart
    

    IF STILL ADMIN SHOW 404 NOT FOUND, Add htaccess file

    1) Add .htaccess at root of magento

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search