Reputation: 211
Following Sencha app layout guidelines for app directory structure I find myself needing a copy of the sdk (e.g. extjs) in each application folder. So I have 2 questions:
I have scoured Sencha docs and the web with no clear answers
Upvotes: 0
Views: 176
Reputation: 2463
You can create .htaccess rules in folders which need to be redirected to shared sdk (for Apache). You can also configure similar rules for other webserver.
Smth like:
RewriteRule /app/sdk/(.+)$ /shared/sdk/$1 [R]
Upvotes: 0