i'm using wildfly 8.2.0 and kubuntu 14.04. If i create a symbolic link under the welcome-content folder i can not call it from browser.
Example:
$wildflyHome/welcome-content/test/index.html --> localhost:8080/test/index.html ==> works.
$wildflyHome/welcome-content/symlink/index.html --> localhost:8080/symlink/index.html ==> doesn't work.
"symlink" is the symbolic link which is created by
ln -s /path/to/symlink $wildflyHome/welcome-content
How can i access the content of a symbolic link?
Thanx in advance.