0

My front is working fine and admin url:admin_rillmark redirect to the following url

http://127.0.0.1/test11/admin_rillmark/admin/auth/login/key/9a93d07026bee02246470be7e230d6edc0bd5f8bb0b20b749794ae272c7c9c8a/

Gives the error page is not working.

Amit Bera
  • 77,456
  • 20
  • 123
  • 237
  • can you check this link : https://magento.stackexchange.com/questions/228430/magento-2-admin-url-404-not-found/228439#228439 –  Jun 12 '18 at 10:05
  • Can you please check at firefox . might be you have issue in google chorme – Amit Bera Jun 12 '18 at 10:06
  • I have change the SELECT * FROM core_config_data WHERE path = 'web/seo/use_rewrites' and make it 0 .Now my url :http://127.0.0.1/test11/index.php/admin_rillmark/admin/index/denied/key/3629653e3d3abcbbc416b635141d0bc827c619a15c1a4c64c2960355bc7435bf/ still give error page is not working. – Shyam Acharya Jun 12 '18 at 10:58
  • Show log file errors that will help...... – Arslan Tabassum Apr 18 '19 at 21:49

3 Answers3

1

There could be multiple reasons behind that...

Try to show some log... meanwhile run these command..

php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento indexer:reindex php bin/magento cache:flush

then retry...

Arslan Tabassum
  • 205
  • 1
  • 9
0

Run this command in Magento directory

composer upgrade

Magento will start running chears

Sanaullah Ahmad
  • 587
  • 1
  • 5
  • 23
0

Below commands will figure out the problems

php bin/magento setup:upgrade
php bin/magento setup:di:compile 
php bin/magento setup:static-content:deploy -f 
php bin/magento indexer:reindex
php bin/magento cache:flush

Enjoy!!!

Kartik Asodariya
  • 471
  • 1
  • 8
  • 23