Default Url::to()

is there a way to a default setting for url::to()

right now i get this

// images/logo.gif
echo Url::to('images/logo.gif');

what i want is this

// https://blabla.com/images/logo.gif
echo Url::to('images/logo.gif', true);

i don’t wanna type the true every time

also is there an advantage to urls like this? ( images/logo.gif ) better SEO maybe?

Use the second parameter to that function: Handling Requests: Routing and URL Creation | The Definitive Guide to Yii 2.0 | Yii PHP Framework