Tagged Questions

7
votes
5answers
546 views

Custom 404 page - PHP

I have a custom 404 page which works fine except for the message I want to display on this page. I would like it to say the url of the page which can't be found but instead it displays the url of the ...
3
votes
2answers
162 views

Returning Http Status Code to Apache from PHP?

On my local development machine, I downloaded PDT + Zend Server, which included Apache 2.2.16 and PHP 5.3.5, running on Windows 7. On my local site, I included a .htaccess that includes ErrorDocuments ...
2
votes
2answers
191 views

ErrorDocument doesn't seem to be working in my .htaccess

Can anyone advise please? I'd like to have the default page for visitors to my site as being index.php and for all non-existent pages the visitor should see errordoc.php So I've put this in the ...
2
votes
2answers
991 views

Single ErrorDocument directive to catch all errors (.htaccess)

Is there something like a wildcard directive to catch all possible errors and deal with them in a single custom error page? ErrorDocument 404 /error.php?code=404 ErrorDocument 403 /error.php?code=403 ...
1
vote
2answers
87 views

Allowing blocked IP to view 403 ErrorDocument

I have a script that is automatically adding IP addresses to my.htaccess file based on lookups in spam databases. However, I would like for subsequent visits from those addresses to be able to view a ...
1
vote
2answers
753 views

Apache's ErrorDocument directive does not redirect

I have a bunch of ErrorDocument directives in my .htaccess file in order to catch almost all the possible errors Apache can throw at a user, and to redirect said user to my error controller which ...
0
votes
0answers
15 views

ErrorDocument redirect on RedHat Apache + JBOSS

I have Jboss running with Apache server in a RedHat server, with a website in the 8080 port, and de domain is pinting to localhost:8080 so when Jboss is down, Apache throws an error and i want to ...
0
votes
1answer
58 views

Index.php as custom error page

I'm using Apache 2.2.X and PHP 5.2.X (installed as Apache module) to build a new website and I would like to read your suggestions about how I'm trying to handle server errors.I was thinking about ...
0
votes
1answer
38 views

ErrorDocument & Mod Rewrite

I was wondering if there is a way to use Mod Rewrite to handle every possible http status error code (4XX and 5XX ones) instead of declaring them all in htaccess like this: # serve custom error pages ...
0
votes
1answer
27 views

Is it possible to use apaches ErrorDocument 404 to actually change the URL instead of needing absolute paths?

We have in a htaccess file: ErrorDocument 404 /404.shtml Which works to show the 404.shtml file. The problem is when someone types thedomain.com/folder1/folder2, it breaks the layout as the page ...
0
votes
1answer
717 views

ErrorDocument not working with local file

I am working on a web app that I'm running on Tomcat 6.0.18, and I am using Apache 2 as a reverse proxy. This works fine. I'm also trying to get Apache to display error pages when, for example, I've ...
0
votes
3answers
842 views

Apache ErrorDocument not working for PHP 500 error

I have a number of ErrorDocuments setup in my .htaccess file for errors such as 404, 401, 403 etc which all redirect to my error page but the ErrorDocument set for a 500 error is never displayed when ...
0
votes
3answers
186 views

custom 404 page for nonexistent php files

I just tried to redirect nonexistent files on the server to my custom 404 page but it only redirects .html files. I used that in my .htaccess file: ErrorDocument 404 /404/404.html How can I ...
0
votes
6answers
688 views

How to use errordocument to redirect to a php file in the same folder?

I want to take requests for missing files in a specific folder and redirect them to program.php in that folder. This is a program I will use a lot in different places, and I would prefer to avoid ...