Forum Moderators: phranque

Message Too Old, No Replies

Setting Up MultiViews in Apache (IBM HttpServer61)

         

jdnewbie98

7:41 pm on Jun 7, 2011 (gmt 0)

10+ Year Member



Hi:

I need help setting up multiviews in ibm http server 6.1 which is based on apache web server 2.0.47. I have tried all the suggestions found on blogs, articles, etc. In particular, I want to setup negotiation based on encoding (i.e. plain text javascript vs. gzipped version)

Does anyone have any straightforward instructions that work? When I access the resource I want without extension I get a 404 Not Found error.

My httpd.conf file (snippet) below:

AddEncoding x-gzip .gz
AddType application/x-javascript js

<Directory /opt/ibm/HttpServer1/htdocs/<remainder_of_path>>
Options Indexes Includes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>


Thank you in advance for any help you can provide.