Allow Daux to work from sub-directories
If you try to host Daux from any directory other than the root of a website (like mysite.com/docs, for example), it just gives an error that the page can't be found. This commit will make Daux remove the base directory from the request when handling it, which should make it work properly in sub-directories.
This commit is contained in:
parent
59a9dd5cf5
commit
7928b4365b
@ -142,7 +142,7 @@ class Server
|
|||||||
{
|
{
|
||||||
$this->params = $this->getParams();
|
$this->params = $this->getParams();
|
||||||
|
|
||||||
$request = substr($this->request->getRequestUri(), 1);
|
$request = substr($this->request->getRequestUri(), strlen($this->request->getBaseUrl()) + 1);
|
||||||
|
|
||||||
if (substr($request, 0, 7) == 'themes/') {
|
if (substr($request, 0, 7) == 'themes/') {
|
||||||
return $this->serveTheme(substr($request, 6));
|
return $this->serveTheme(substr($request, 6));
|
||||||
|
Loading…
Reference in New Issue
Block a user