cancel
Showing results for 
Search instead for 
Did you mean: 

How to solve Magento 2.3.3 Admin url 404 error

Re: How to solve Magento 2.3.3 Admin url 404 error

@Rahul Gupta  I am using wamp, yes i restart my server.

Re: How to solve Magento 2.3.3 Admin url 404 error

Hi @Aveeva 

 

If this doesn't work then you have problem with apache configuration.

Do this steps:-

 

sudo gedit /etc/apache2/apache2.conf

and replace this code :

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

with

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

 

sudo service apache2 restart

Re: How to solve Magento 2.3.3 Admin url 404 error

Hi @Aveeva 

 

for finding your configuration file you can use this link.

 

https://stackoverflow.com/questions/25105926/wamp-server-changing-httpd-conf-for-apache

Re: How to solve Magento 2.3.3 Admin url 404 error

@Rahul Gupta  No luck, tried everything still facing same issue.

Re: How to solve Magento 2.3.3 Admin url 404 error

Hi @Aveeva 

 

By changing in configuration file have you restarted your apache server?

Re: How to solve Magento 2.3.3 Admin url 404 error

@Rahul Gupta  Yes i restart my sever.

Re: How to solve Magento 2.3.3 Admin url 404 error

Hi @Aveeva 

 

Can you create info.php file on the root with the below code.

 

<?php

phpinfo();

?>

Then check if the mod rewrite module is enabled on it.

Thanks

Re: How to solve Magento 2.3.3 Admin url 404 error

Re: How to solve Magento 2.3.3 Admin url 404 error

Re: How to solve Magento 2.3.3 Admin url 404 error

Hi @Aveeva 

 

Do you have .htaccess file on root?