Answers for "Not Found The requested URL was not found on this server. Apache/2.4.41 (Ubuntu) Server at localhost Port 80"

2

Not Found The requested URL was not found on this server. Apache/2.4.41 (Ubuntu) Server at localhost Port 80

sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf
sudo a2enconf phpmyadmin
sudo service apache2 restart
Posted by: Guest on June-14-2020
0

the requested url was not found on this server. apache ubuntu

excute this command to edit apache conf file of your server.

nano /etc/apache2/apache2.conf

And Kindly find this section and update this.
from

<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>

Then apache2 restart
sudo service apache2 restart

End. Hope it works well.
Posted by: Guest on March-12-2021
0

the requested url was not found on this server. apache/2.4.41 (ubuntu) server at port 80

sudo -H nano /etc/apache2/apache2.conf

add the following line at the end of the file
Include /etc/phpmyadmin/apache.conf

then restart the apache2
sudo systemctl restart apache2
Posted by: Guest on June-28-2021

Code answers related to "Not Found The requested URL was not found on this server. Apache/2.4.41 (Ubuntu) Server at localhost Port 80"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language