Apache Localhost Not Found



  1. Apache Localhost 8080

Most probably your apache doesn't load the configuration of the phpmyadmin part. The link you made from /etc/phpmyadmin/apache.conf to /etc/apache2/conf.d/phpmyadmin.conf may not be valid anymore after the update. Make this link again, but notice the names may be different. After that, restart apache. And the server starts on localhost:1313, however when I try to access that URL I get a 404. 127.0.0.1:1313 works, but then all of the links fail as they try to resolve back to localhost. I was able to access by enabling a domain name on my router (foo.home) and then I can open the main page with localhost.foo.home:1313, but all of the Hugo. The requested URL was not found on this server. Apache/2.4.46 (Win64) PHP/7.4.9 Server at localhost Port 80” It is also noted that the URL for the network is “localhost/wordpress/wp-admin/network/”, where the troublesome newly created site’s URL is “localhost/wordpress/testsite/wp-admin/” (this is the URL that cannot be visited).

Related

Install Laravel5 side by side with October cms Question
.htaccess doesn't work on ubuntu droplet Question

Question

This is my first time using digitalocean and I am completely new to apache configuration etc.

I have a php application hosted on ubuntu 18.04. After uploading web files, the homepage or default ip address goes through but other links don’t. i get the error, ‘The requested URL /xxxxxx was not found on this server. Apache/2.4.29 (Ubuntu) Server at 178.128.75.206 Port 80’

The ip address is of my website is 178.128.75.206 . Hl-dt-st rw dvd gcc-h20n driver for mac.

The requested URL /digitalsaving was not found on this server.

Apache/2.4.29 (Ubuntu) Server at 178.128.75.206 Port 80’

My config file looks like this [/etc/apache2/sites-available/stash.ng.conf]

<VirtualHost *:80>
ServerAdmin webmaster@stash.ng
ServerName stash.ng
ServerAlias www.stash.ng
DocumentRoot /var/www/stash.ng/html
<Directory /var/www/stash.ng/html>
Options +FollowSymlinks
AllowOverride All
Require all granted
</Directory>

</VirtualHost>

Thanks in advance

Related

Install Laravel5 side by side with October cms Question
Working
.htaccess doesn't work on ubuntu droplet Question
Apache
  • vpsfixJuly 30, 2018

    You probably need some mod_rewrite rules. What is the php application you’re using?

    And see if you have a .htaccess file in the document root.

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Apache Localhost 8080

×