Hello,
I have a FastCGI application running on URI / of a virtualhost. I would like web requests of files (which are named like *.*) not to be routed to this FastCGI application so I have set two contexts for this virtual host in the following sequence order :
1) Static :
URI = exp.+\.[^\/]+)$
Location = $DOC_ROOT/$1
Accessible = Yes
2) FastCGI : a working context with URI = /
I reloaded and even restarted LSWS with no success : every time I try to access a file on this virtual host (for example : /css/style.css which exists and is accessible without the context of sequence 2) the request is routed to the FastCGI app.
When I set URI ="/css/" with location = $DOC_ROOT/css/ in the URI of the context #1, I can view my /css/style.css => is "exp:..." in URIs not working ?
What is wrong ? How to achieve my goal ?
Thank you for answers.
I have a FastCGI application running on URI / of a virtualhost. I would like web requests of files (which are named like *.*) not to be routed to this FastCGI application so I have set two contexts for this virtual host in the following sequence order :
1) Static :
URI = exp.+\.[^\/]+)$
Location = $DOC_ROOT/$1
Accessible = Yes
2) FastCGI : a working context with URI = /
I reloaded and even restarted LSWS with no success : every time I try to access a file on this virtual host (for example : /css/style.css which exists and is accessible without the context of sequence 2) the request is routed to the FastCGI app.
When I set URI ="/css/" with location = $DOC_ROOT/css/ in the URI of the context #1, I can view my /css/style.css => is "exp:..." in URIs not working ?
What is wrong ? How to achieve my goal ?
Thank you for answers.