Hi everyone! I have a server with Apache2 and Websphere. I have a working page that has 2 frames (xxx.html and yyy.jsp) that is accessed by
http://xxx.yyy.zzz/mar/chec/htm/frame.html , but now I was asked to 'reduce' that long address into a simpler one, so I went to the httpd.conf and added something like this:
#
# Aliases: Add here as many aliases as you need (with no limit). The format is
# Alias fakename realname
#
# Note that if you include a trailing / on fakename then the server will
# require it to be present in the URL. So "/icons" isn't aliased in this
# example, only "/icons/"..
#
Alias /sgche /home/mar/web/chec/htm
so that when I go to
http://xxx.yyy.zzz/sgche/frame.html, it could be redirected as the one mentioned above. The upper frame (.html) works, including all references to images, etc, the problem is that the lower frame (.jsp) throws a "Internal Server Error"...Is putting an Alias in the httpd.conf a wrong approach?