Success
" Launch Magento Admin "
Not Found
The requested URL /admin_1wxnln/ was not found on this server.
Any ideas?
Solved! Go to Solution.
This is very known issue - you will require to put .htaccess file in the root directory and in that you need to add this content - https://github.com/magento/magento2/blob/2.3-develop/.htaccess
Copy the content from the given link and add that into your .htaccess file.
it will resolved your issue.
Hope it helps !
Hello @phill_whiteside
You can follow below shared all solutions:
Edit apache2.conf file and change following
<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>
OR
Try to access site as example.com/index.php/admin
OR
just add the .htaccess file in root folder.
OR
Installing rewrite_module can fix:
sudo a2enmod rewrite
sudo service apache2 restart
Let me know if you still face the issue.
This is very known issue - you will require to put .htaccess file in the root directory and in that you need to add this content - https://github.com/magento/magento2/blob/2.3-develop/.htaccess
Copy the content from the given link and add that into your .htaccess file.
it will resolved your issue.
Hope it helps !
Thanks for speedy reply
I've edited
AllowOverride None
to be
AllowOverride All
I've also checked and in /etc/httpd/conf.modules.d/00-base.conf file
LoadModule rewrite_module modules/mod_rewrite.so
is uncommented.
(I'm using CentOS 7 so checked that is where the rewrite_module is enabled).
Still get the 404 error.
Trying shop.mgjuddltd.co.uk/index.php/admin gives a default Error page:
Are there any other suggestions?
Hi,
Are you saying that it still not accessible via original "/admin_1wxnln/" after you modified .htaccess, so it now contains "AllowOverride All"?
Hi,
I marked as solved after adding in the .htaccess file as per the comment.
Regards,
Phill.