We have a web application that we run inside of WordPress in order take advantage of WordPress’s authentication. To make this work, we created a template type for our application that simply includes our application’s start page.
While a little bit of hack, this works great, except for once aspect – all the relative URLs now use the WordPress’s page as its base, instead of the actual path to the resource. For example, if my application’s page is at http://mysite.com/myapp
, a relative link to a stylesheet would result in http://mysite.com/myapp/css/stylesheet.css
, as expected.
Unfortunately, this is not the actual location of the stylesheet. The actual location of the stylesheet is something like this: http://mysite.com/directory1/directory2/directory3/css/stylesheet.css
.
How should I go about linking to this resource in my web application if the base URL won’t accurately reflect the location of the resource?
Note: I am not able to use absolute links as we develop locally, which obviously does not have the same directory structure as the WordPress site.