Tagged Questions
2
votes
2answers
201 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
1k 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
1answer
57 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
...
1
vote
2answers
95 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
1answer
150 views
How to combine ErrorDocument and redirect in htaccess?
I have a very simple 5 page static site.
Instead of a 404, I want to do a 301 redirect to the index page whenever a visitor accesses a page that doesn't exist. I tried something like this:
...
1
vote
2answers
123 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
184 views
404 ErrorDocument Problem
I have .htaccess already configured:
ErrorDocument 404 error.php
But whenever I go to an invalid page, it should display the 404 page, but it just shows:
"error.php"
Just blank white, just ...
1
vote
1answer
352 views
How can I get ErrorDocument in .htaccess to output wrong uri parameter?
I've worked-around the solution to transform all uri to one page via ErrorDocument.
The reason behind this is to send Files AND folders (nice urls) to one page. However, I need the URI string to be ...
1
vote
2answers
713 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
0answers
23 views
ErrrorDocument and RewriteEngine On conflict in .htaccess file
I'm using this as my .htaccess file (I know that redirection method is clumsy but it works just fine - but if you know how to rewrite it better (maybe some kind of reccursion) it would be great):
...
0
votes
1answer
73 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
0answers
52 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
1answer
87 views
404 page with htaccess
If i have a rewrite rule setup to get any name that is not a file and display the page-layout-select.php
How would I set a 404 if the page returns nothing as if I type anything (a page name that does ...
0
votes
2answers
287 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
0answers
362 views
.htaccess ErrorDocument 404 causes Redirect Loop
I'm trying to create a 404 Error page at /404.php.
I added the ErrorDocument line into my .htaccess file in the hostname root, but it seems to cause a redirect loop on any requests that would become ...
0
votes
3answers
690 views
.htaccess and custom ErrorDocument for different file types
I'm wondering if it's possible to use mod rewrite along with the ErrorDocument deceleration to customize the error pages depending on what type of file is requested.
For example a non-existent html ...
0
votes
6answers
722 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 ...
0
votes
2answers
711 views
right order of rewrite rules in an htaccess file
I need to have :
http://www.example.com/v1/my-project/ redirected to http://example.com/my-project/
so :
(1) remove the www from the http_host
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC]
...