[更新]修改服务器URL根计算方法

This commit is contained in:
Anyon 2017-09-13 10:10:06 +08:00
parent 3b91c084d9
commit c8015228ee
2 changed files with 4 additions and 8 deletions

View File

@ -40,7 +40,7 @@ class FilterView
{
$this->request = Request::instance();
list($appRoot, $uriSelf) = [$this->request->root(true), $this->request->url(true)];
$uriRoot = strpos($appRoot, EXT) ? ltrim(dirname($appRoot), DS) : $appRoot;
$uriRoot = preg_match('/\.php$/', $appRoot) ? dirname($appRoot) : $appRoot;
$uriStatic = "{$uriRoot}/static";
$replace = ['__APP__' => $appRoot, '__SELF__' => $uriSelf, '__PUBLIC__' => $uriRoot, '__STATIC__' => $uriStatic];
$params = str_replace(array_keys($replace), array_values($replace), $params);

View File

@ -131,13 +131,9 @@ class FileService
*/
public static function getBaseUriLocal()
{
$request = request();
$base = $request->root();
$root = strpos($base, '.') ? ltrim(dirname($base), DS) : $base;
if ('' != $root) {
$root = '/' . ltrim($root, '/');
}
return ($request->isSsl() ? 'https' : 'http') . '://' . $request->host() . "{$root}/static/upload/";
$appRoot = request()->root(true);
$uriRoot = preg_match('/\.php$/', $appRoot) ? dirname($appRoot) : $appRoot;
return "{$uriRoot}/static/upload/";
}
/**