403
Posted: 13 Sep 2013, 00:55
First of all awesome MOD, thank you!
Everything seems to be working just fine but one little problem I am having is the images folder shows a white blank page. Read some of the other post for support and nothing really seems to help. Inside my images folder there is a .htaccess file (blank) do I need to add a code inside this file in order for my 403 to work with my custom style?
This is what I have in the root section .htaccess file
Any help would really be appreciated.
Everything seems to be working just fine but one little problem I am having is the images folder shows a white blank page. Read some of the other post for support and nothing really seems to help. Inside my images folder there is a .htaccess file (blank) do I need to add a code inside this file in order for my 403 to work with my custom style?
This is what I have in the root section .htaccess file
Code: Select all
#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
#<IfModule mod_rewrite.c>
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#</IfModule>
<Files "config.php">
Order Allow,Deny
Deny from All
</Files>
<Files "common.php">
Order Allow,Deny
Deny from All
</Files>
ErrorDocument 400 /error.php?mode=400
ErrorDocument 401 /error.php?mode=401
ErrorDocument 403 /error.php?mode=403
ErrorDocument 404 /error.php?mode=404
ErrorDocument 500 /error.php?mode=500