I use Apache 2.4 and I installed a Glassfish application server behind it. I use mod_jk modul as the dynamic content has to be handled by Glassfish and my static content (wordpress blog) is handled by Abapche.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /home/glassfish/glassfish/domains/domain1/applications/muveltnepbasic
JkMount /* muvnepworker
JkUnMount /blog/* muvnepworker
<Directory /home/glassfish/glassfish/domains/domain1/applications/muveltnepbasic/blog>
Options Indexes FollowSymLinks MultiViews
Require all granted
AddHandler php5-script php
</Directory>
ErrorLog /home/glassfish/glassfish/domains/domain1/logs/error.log
CustomLog /home/glassfish/glassfish/domains/domain1/logs/access.log combined
</VirtualHost>
The following erros are occured:
3. If I type
muveltnep.hu/blog where there is an index.php of my wordpress, I Got: /blog/index.xhtml Not Found in ExternalContext as a Resource.
Anybody can help me to find my mistakes in the configuration?