Hi,
I am trying to configure custom error messages in Apache web server v1.3 of Websphere App server v3.5
I have already set the following configuration in httpd.conf file:
LanguagePriority en fr de
Alias /errordocs "D:/IBM/IBM HTTP Server/htdocs/errordocs"
<Directory "D:/IBM/IBM HTTP Server/htdocs/errordocs">
AllowOverride none
Options MultiViews IncludesNoExec FollowSymLinks
AddType text/html .shtml
AddHandler server-parsed .shtml
</Directory>
# "500 Internal Server Error"
ErrorDocument 500 /errordocs/500
Also, i have created the 500.shtml.en file and placed in the htdocs/errordocs directory
but still i am getting "Page cannot be displayed" error for Http Server Error 500
Am i missing something??
Appreciate if someone can help!!