Как вариант в шаблон вкинь ) Перед закрывающим body
<script>
let hostUrl = window.location.href;
if(hostUrl == 'http://твой_сайт.ru/'/*Здесь в зависимости от настройки apach для главной http://твой_сайт.ru/, http://твой_сайт.ru/index.html или http://твой_сайт.ru/index.php вставь */){
document.body.style.background = "#000 url(\"путь к картинке для главной\") no-repeat fixed left bottom";
}else{
document.body.style.background = "#000 url(\"путь к картинке для других страниц\") no-repeat fixed left bottom";
}
</script>