If you are using
/home/shaliu/Projects/Nominatim/website/search.php
In this case your location is starting with / that means home folder (directory) should be inside root folder of the server. For example as a local server if we consider XAMPP then home folder should be inside C:\xampp\htdocs (in general) and if we consider WAMP then home folder should be inside www folder.
If your home folder is inside the folder where your current page is, then you should use
home/shaliu/Projects/Nominatim/website/search.php
No / (forward slash required).
Second thing is you need to replace + by . to concatenate the string.
SO, if your home folder is inside root directory of server then you should go with
header("Location: /home/shaliu/Projects/Nominatim/website/search.php?q=".$query);
Otherwise, you should go with
header("Location: home/shaliu/Projects/Nominatim/website/search.php?q=".$query);