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 ...
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 ...
1
vote
2answers
254 views
Creating an error page for a subdomain that doesn't exist
I've got a number of subdomains on one of my sites. When someone goes to a subdomain that doesn't exist, I want to redirect to a 404 page on my main domain.
noexist.example.com --> ...
1
vote
1answer
57 views
How do i have Apache to do further handling of the error status set within the PHP script?
My environment is: shared hosting with PHP 5.2 installed as apache2handler
I have ErrorDocuments configured:
ErrorDocument 404 "Simply Not Found"
# OR
ErrorDocument 404 /errors/fancy-not-found.php
...
1
vote
2answers
116 views
.htaccess cross browser
Im trying to load a custom error document for a 404 error using a .htaccess file on a linux server, the page gets the current page URL then redirects to another site (which is retrieved from a db) ...
1
vote
2answers
692 views
ErrorDocument 404 Not Sending Referrer Information: PHP
I'm using a standard htaccess ErrorDocument 404 to redirect users to a new page. In order to customize the 404, I need to know their referrer information (from the page they Tried to visit).
...
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
0answers
48 views
.htaccess ErrorDocument & clean urls wont work together
As a standard using the redirect on every site i create. Just realised i have never really implemented the 404 pages since doing this so added to .htaccess the file is as follows
<Files ...
0
votes
2answers
277 views
Setting an ErrorDocument 404 in .htaccess causes jQuery's AJAX call to never error
Alright, so I tried to use .htaccess to set up ErrorDocuments for various error codes. It works great, except that now, the following jQuery AJAX code will never run the error() function:
...
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 ...