Consider the following MWE:
\documentclass{article}
\usepackage[isbn=false,giveninits=true,uniquename=init,style=authoryear-comp,backend=biber,sorting=ynt,natbib,maxbibnames=99,maxcitenames=3,hyperref=true,sortcites=true,language=british,doi=false,url=false,backref=true]{biblatex}
\RequirePackage[colorlinks=true,urlcolor=blue,linkcolor=black]{hyperref}
\addbibresource{References.bib}
% DOCUMENT
\begin{document}
\cite{bop_22}
\printbibliography
\end{document}
And a References.bib file with an entry like this:
@online{bop_22,
title = {Inmate Statistics},
author = {{Federal Boreau of Prisons}},
year = {2022},
url = {https://www.bop.gov/about/statistics/statistics_inmate_offenses.jsp}
}
This is the output:
I want the title (Inmate Statistics) to be clickable while keeping the ugly and long url totally out of sight, but I can't achieve it. Can you please help me achieve that?


cit. on etc.page numbers) and then disable the URL's which I always use with abibnoteexplaining they are clickable (as the color box does not look nice). Hope someone more experienced in these dark arts can answer, best of luck! – JamesT Oct 03 '22 at 21:23