• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

IBM HTTP Server redirection - version 610

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

We have recently migrated our application from WAS5.x to WAS6.
The previous version of WAS was having IHS 1.3.28 and WAS6 is having IHS 610 installed.

we had a RewriteRule which was working fine in IHS 1.3.28 (httpd.conf) the same rule when I copy to httpd.conf 610 version, it works fine but the application context root starts giving 404 : File not found error
GET /App_root/index.html HTTP/1.1" 404 63 (from access_log)

the sample of the RewriteRule

RewriteEngine On
RewriteRule ^/$ /index.html [PT]
RewriteRule ^/(.*) /App_Root/$1 [PT]
RewriteRule ^/App_Root/(.*)/$ /App_Root/$1/index.html [PT]

I wanted to know if there is a difference between how these two version behave in terms of rewriteRule and what could be the resolution for this.

can anybody help there please.

Thanks!
 
Ranch Hand
Posts: 446
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One place to check would be to look at the IHS Plug-in file for the web application context root.
 
Won't you please? Please won't you be my neighbor? - Fred Rogers. Tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic