I'm using the URL like web.com/sys/test
, which is rewritten in nginx config to web.com?system=sys&id=test
via rewrite ^/(\w+)/(\w+)$ /?system=$1&id=$2 break;
.
Also, all my resource files have relative path.
Therefore I get error:
Unable to find web.com/sys/css/user.css
, however user.css
is located in /css/
.
Is there a way to solve the problem remaining the relative path for resource files?