Tagged Questions
2
votes
2answers
992 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
...
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
3answers
639 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
2answers
689 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]
...