Fixes for files within dir
Cette révision appartient à :
Parent
0f8c8e9fa9
révision
39e1b96d18
@ -74,8 +74,10 @@
|
||||
}
|
||||
$this->mode = Daux::LIVE_MODE;
|
||||
$this->host = $_SERVER['HTTP_HOST'];
|
||||
$this->base_url = $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
|
||||
$this->base_url = substr($this->base_url, 0, strrpos($this->base_url, '/'));
|
||||
//Fixes for pages within pages
|
||||
//$this->base_url = $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
|
||||
$this->base_url = $_SERVER['HTTP_HOST'];
|
||||
//$this->base_url = substr($this->base_url, 0, strrpos($this->base_url, '/'));
|
||||
//adding this replace, which replaces the /index.php with nothing seems to resolve the issue with serving static content
|
||||
$this->base_url = str_replace("/index.php", "", $this->base_url);
|
||||
}
|
||||
|
Chargement…
Référencer dans un nouveau ticket
Block a user