Questions tagged [http-status-code-404]

404 is the HTTP status code for "Not Found"

A web server will return a status code of 404 when the resource that is being requested does not exist or cannot be found.

385 questions
0
votes
1 answer

Set Default 404 error pages across entire instance of IIS

we are currently using IIS 8 on our new windows VPS. We have a content management system we install for all our apps we build, but we are finding it incredibly painful as our hosting provider requires that we change the default 404 error page from…
user125264
  • 101
  • 3
0
votes
0 answers

NGINX Custom ErrorPages wont work

My Server doesn't want to display a custom 500 error page. The error page for the 500 error is here: https://aixspace.de/errorpages/500-504/500.html these are my vhost configs: server { listen 80; ## listen for ipv4; this line is default and…
0
votes
1 answer

Getting Drupal or Apache to try a proxy on 404

I have a legacy (Tomcat) site that used to be called host.domain and recently deployed a Drupal site. The new Drupal server is now host.domain and the old Tomcat server is legacy.domain. Most of the hierarchy has been replicated in Drupal, so…
0
votes
1 answer

Is it possible to create Custom Error Log in Apache 2 for 404 hits?

Is it possible to create a log file (for example not_found.log) with only 404 HTTP Status Code with Apache2? Just like this: http://www.helicontech.com/articles/mod_log_config-capabilities/ (Per status code differentiation) The main problem with…
Virtuose
  • 537
  • 1
  • 6
  • 11
0
votes
2 answers

Nginx returning 404 with Python-urllib but fine if accessed from browser

We have a repo server running on a Windows box serving some static files that are supposed to be grabbed by our worker nodes using Python-urllib. The problem lies in the fact that when we make a request to a file that we know exists using Python we…
Matthew Salsamendi
  • 318
  • 4
  • 5
  • 14
0
votes
1 answer

curl from localhost gets 404

We have a cPanel host running on centos that has got me stumped. I am trying to use curl from the command line to trigger a specific web page. However I keep getting 404 errors for the specific page whereas the main page works fine. curl…
user35213
0
votes
1 answer

Why IIS is still blocking Web.config even after setting denyUrlSequences and fileExtensions?

One of the IIS sites I manage forwards all the requests to Apache. This means that any request, including requests to files such as .config, should be forwarded.
Arseni Mourzenko
  • 2,165
  • 5
  • 23
  • 41
0
votes
1 answer

Apache memory usage with 404

We're facing a problem with an apache server serving static files. When there are lots of requests for a resource that doesn't exist the apache starts to grow in number of processes and memory usage until it uses all the memory available and stops…
0
votes
1 answer

install nginx on centos 6 but folders isnot working give me 404 not found

I've install Nginx on CentOS 6 without control panel following these steps. I got Nginx installed successfully, see this link. But I still have a folder that isn't showing and giving me "not found errors". It's located here:…
0
votes
1 answer

404 errors with Virtual Host

Machine: Mac Book Pro Web Server: Apache I'm building a Wordpress site locally and I've set it up as a virtual host, I've made the following changes to http-vhosts.conf: ServerAdmin webmaster@projectname.dev DocumentRoot…
Stephen
  • 195
  • 1
  • 3
  • 11
0
votes
2 answers

After moving eKtron Site from iis6 to iis7 site is running but some of the links do not work and

Background I moved this site from IIS6 WIN2K3 to WIN2K8R2 IIS7 and the site launches but I'm getting errors on lots of the links/main menu items. Things I have already checked application pool settings db connection strings Creds/permissions in…
zman
  • 633
  • 6
  • 14
0
votes
1 answer

Nginx + Unicorn Rails Application gets 404 when requests number are high

I have a Rails application deployed using Nginx + Unicorn. Last night, when the traffic peaked, Nginx was getting lots of 404 errors. When I dig into logs, those 404 requests on the nginx side did not even get to Rails because I could not find these…
0
votes
3 answers

Can't view website with public IP, but www.example.com & example.com work fine

I am facing a problem with a web application on IIS 7.0. Our server configuration is Win 08 server R2 and has a public IP. The problem is, when an application is web hosted on IIS 7.0 and when it is browsed it works fine, but when the same page is…
0
votes
1 answer

nginx alias using php5-fpm response 404

I use php5 fpm using nginx. but i have a problem. # debug alias location /bb/ { alias /usr/share/blahblah/; } file on http://mysite.localhost/bb/index.php was not found. but it's still on /usr/share/blahblah/index.php and this is an error: *1…
sweb
  • 451
  • 1
  • 9
  • 27
0
votes
1 answer

How is a 404 custom error page requested by browser?

I am trying to understand how the communication works between the browser and the server in the case of custom error message. I understand a 301/302 header which contains the URL of the page in question, HTTP/1.1 30x .... Location:…
mplungjan
  • 101
  • 4