hi all,
I'm trying to run a basic example with apache-weblogic bridge. I have included weblogic module and the below code snippet in httpd.conf file,
LoadModule weblogic_module modules/mod_wl_22.so
<IfModule mod_weblogic.c>
WebLogicCluster localhost:7001,11.11.11.11:7003
MatchExpression /*
</IfModule>
when i hit http
://localhost/console, wls console comes up fine. now I want to server some static pages,so i add a virtual host tag just below the above code snippet and it looks like,
<VirtualHost *:80>
ServerName localhost
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
</VirtualHost>
I have created a folder 'test' under htdocs and have placed a file test.html and when I try to access http
://localhost/test/test.html, it shows a 404. Now please let me know how do i server a static page usin this set-up. other important directives;
[global directives]
ServerName localhost
DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
[edited by: phranque at 11:02 pm (utc) on Aug 28, 2013]
[edit reason] unlinked urls [/edit]